Current Path : /storage/v11800/salandingpage/

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

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

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_commentmeta`
--

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

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

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

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

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

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

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

LOCK TABLES `wp_e_events` WRITE;
/*!40000 ALTER TABLE `wp_e_events` DISABLE KEYS */;
INSERT INTO `wp_e_events` VALUES (1,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2023-08-09T11:05:34.987-06:30\"}','2023-08-09 11:05:34');
/*!40000 ALTER TABLE `wp_e_events` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `wp_nf3_action_meta`
--

DROP TABLE IF EXISTS `wp_nf3_action_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_action_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext DEFAULT NULL,
  `meta_key` longtext DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=199 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_action_meta`
--

LOCK TABLES `wp_nf3_action_meta` WRITE;
/*!40000 ALTER TABLE `wp_nf3_action_meta` DISABLE KEYS */;
INSERT INTO `wp_nf3_action_meta` VALUES (1,1,'objectType','Action','objectType','Action'),(2,1,'objectDomain','actions','objectDomain','actions'),(3,1,'editActive','','editActive',''),(4,1,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(5,1,'payment_gateways','','payment_gateways',''),(6,1,'payment_total','','payment_total',''),(7,1,'tag','','tag',''),(8,1,'to','','to',''),(9,1,'email_subject','','email_subject',''),(10,1,'email_message','','email_message',''),(11,1,'from_name','','from_name',''),(12,1,'from_address','','from_address',''),(13,1,'reply_to','','reply_to',''),(14,1,'email_format','html','email_format','html'),(15,1,'cc','','cc',''),(16,1,'bcc','','bcc',''),(17,1,'attach_csv','','attach_csv',''),(18,1,'redirect_url','','redirect_url',''),(19,1,'email_message_plain','','email_message_plain',''),(20,2,'to','{field:email}','to','{field:email}'),(21,2,'subject','This is an email action.','subject','This is an email action.'),(22,2,'message','Hello, Ninja Forms!','message','Hello, Ninja Forms!'),(23,2,'objectType','Action','objectType','Action'),(24,2,'objectDomain','actions','objectDomain','actions'),(25,2,'editActive','','editActive',''),(26,2,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(27,2,'payment_gateways','','payment_gateways',''),(28,2,'payment_total','','payment_total',''),(29,2,'tag','','tag',''),(30,2,'email_subject','Submission Confirmation ','email_subject','Submission Confirmation '),(31,2,'email_message','<p>{all_fields_table}<br></p>','email_message','<p>{all_fields_table}<br></p>'),(32,2,'from_name','','from_name',''),(33,2,'from_address','','from_address',''),(34,2,'reply_to','','reply_to',''),(35,2,'email_format','html','email_format','html'),(36,2,'cc','','cc',''),(37,2,'bcc','','bcc',''),(38,2,'attach_csv','','attach_csv',''),(39,2,'email_message_plain','','email_message_plain',''),(40,3,'objectType','Action','objectType','Action'),(41,3,'objectDomain','actions','objectDomain','actions'),(42,3,'editActive','','editActive',''),(43,3,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(44,3,'payment_gateways','','payment_gateways',''),(45,3,'payment_total','','payment_total',''),(46,3,'tag','','tag',''),(47,3,'to','{system:admin_email}','to','{system:admin_email}'),(48,3,'email_subject','New message from {field:name}','email_subject','New message from {field:name}'),(49,3,'email_message','<p>{field:message}</p><p>-{field:name} ( {field:email} )</p>','email_message','<p>{field:message}</p><p>-{field:name} ( {field:email} )</p>'),(50,3,'from_name','','from_name',''),(51,3,'from_address','','from_address',''),(52,3,'reply_to','{field:email}','reply_to','{field:email}'),(53,3,'email_format','html','email_format','html'),(54,3,'cc','','cc',''),(55,3,'bcc','','bcc',''),(56,3,'attach_csv','0','attach_csv','0'),(57,3,'email_message_plain','','email_message_plain',''),(58,4,'message','Thank you {field:name} for filling out my form!','message','Thank you {field:name} for filling out my form!'),(59,4,'objectType','Action','objectType','Action'),(60,4,'objectDomain','actions','objectDomain','actions'),(61,4,'editActive','','editActive',''),(62,4,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(63,4,'payment_gateways','','payment_gateways',''),(64,4,'payment_total','','payment_total',''),(65,4,'tag','','tag',''),(66,4,'to','','to',''),(67,4,'email_subject','','email_subject',''),(68,4,'email_message','','email_message',''),(69,4,'from_name','','from_name',''),(70,4,'from_address','','from_address',''),(71,4,'reply_to','','reply_to',''),(72,4,'email_format','html','email_format','html'),(73,4,'cc','','cc',''),(74,4,'bcc','','bcc',''),(75,4,'attach_csv','','attach_csv',''),(76,4,'redirect_url','','redirect_url',''),(77,4,'success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:email}.</p>','success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:email}.</p>'),(78,4,'email_message_plain','','email_message_plain',''),(79,5,'title','','title',''),(80,5,'key','','key',''),(81,5,'type','save','type','save'),(82,5,'active','1','active','1'),(83,5,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),(84,5,'label','Record Submission','label','Record Submission'),(85,5,'objectType','Action','objectType','Action'),(86,5,'objectDomain','actions','objectDomain','actions'),(87,5,'editActive','','editActive',''),(88,5,'order','3','order','3'),(89,5,'payment_gateways','','payment_gateways',''),(90,5,'payment_total','0','payment_total','0'),(91,5,'tag','','tag',''),(92,5,'to','{wp:admin_email}','to','{wp:admin_email}'),(93,5,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(94,5,'email_message','{fields_table}','email_message','{fields_table}'),(95,5,'from_name','','from_name',''),(96,5,'from_address','','from_address',''),(97,5,'reply_to','','reply_to',''),(98,5,'email_format','html','email_format','html'),(99,5,'cc','','cc',''),(100,5,'bcc','','bcc',''),(101,5,'attach_csv','','attach_csv',''),(102,5,'redirect_url','','redirect_url',''),(103,5,'parent_id','2','parent_id','2'),(104,5,'message','This action adds users to WordPress\' personal data export tool, allowing admins to comply with the GDPR and other privacy regulations from the site\'s front end.','message','This action adds users to WordPress\' personal data export tool, allowing admins to comply with the GDPR and other privacy regulations from the site\'s front end.'),(105,5,'email_message_plain','','email_message_plain',''),(106,5,'submitter_email','','submitter_email',''),(107,5,'fields-save-toggle','save_all','fields-save-toggle','save_all'),(108,5,'exception_fields','a:0:{}','exception_fields','a:0:{}'),(109,5,'set_subs_to_expire','0','set_subs_to_expire','0'),(110,5,'subs_expire_time','90','subs_expire_time','90'),(111,6,'title','','title',''),(112,6,'key','','key',''),(113,6,'type','email','type','email'),(114,6,'active','1','active','1'),(115,6,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),(116,6,'label','User Email Confirmation','label','User Email Confirmation'),(117,6,'objectType','Action','objectType','Action'),(118,6,'objectDomain','actions','objectDomain','actions'),(119,6,'editActive','','editActive',''),(120,6,'to','{field:email}','to','{field:email}'),(121,6,'subject','Ninja Forms Submission','subject','Ninja Forms Submission'),(122,6,'message','{all_fields_table}','message','{all_fields_table}'),(123,6,'order','2','order','2'),(124,6,'payment_gateways','','payment_gateways',''),(125,6,'payment_total','0','payment_total','0'),(126,6,'tag','','tag',''),(127,6,'email_subject','Thank you for registering for our event','email_subject','Thank you for registering for our event'),(128,6,'email_message','<p>Your registration details are below:</p><p>{all_fields_table}<br></p>','email_message','<p>Your registration details are below:</p><p>{all_fields_table}<br></p>'),(129,6,'from_name','','from_name',''),(130,6,'from_address','{system:admin_email}','from_address','{system:admin_email}'),(131,6,'reply_to','','reply_to',''),(132,6,'email_format','html','email_format','html'),(133,6,'cc','','cc',''),(134,6,'bcc','','bcc',''),(135,6,'attach_csv','','attach_csv',''),(136,6,'parent_id','2','parent_id','2'),(137,6,'email_message_plain','','email_message_plain',''),(138,7,'title','','title',''),(139,7,'key','','key',''),(140,7,'type','email','type','email'),(141,7,'active','1','active','1'),(142,7,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),(143,7,'label','Admin Email Notification','label','Admin Email Notification'),(144,7,'objectType','Action','objectType','Action'),(145,7,'objectDomain','actions','objectDomain','actions'),(146,7,'editActive','','editActive',''),(147,7,'to','{system:admin_email}','to','{system:admin_email}'),(148,7,'subject','Ninja Forms Submission','subject','Ninja Forms Submission'),(149,7,'message','{all_fields_table}','message','{all_fields_table}'),(150,7,'order','2','order','2'),(151,7,'payment_gateways','','payment_gateways',''),(152,7,'payment_total','0','payment_total','0'),(153,7,'tag','','tag',''),(154,7,'email_subject','New Event Registration from {field:name_1691654083383} ','email_subject','New Event Registration from {field:name_1691654083383} '),(155,7,'email_message','<p>Registration details are below:</p><p>{all_fields_table}<br></p>','email_message','<p>Registration details are below:</p><p>{all_fields_table}<br></p>'),(156,7,'from_name','','from_name',''),(157,7,'from_address','','from_address',''),(158,7,'reply_to','{field:email}','reply_to','{field:email}'),(159,7,'email_format','html','email_format','html'),(160,7,'cc','','cc',''),(161,7,'bcc','','bcc',''),(162,7,'attach_csv','','attach_csv',''),(163,7,'parent_id','2','parent_id','2'),(164,7,'email_message_plain','','email_message_plain',''),(165,8,'title','','title',''),(166,8,'key','','key',''),(167,8,'type','successmessage','type','successmessage'),(168,8,'active','1','active','1'),(169,8,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),(170,8,'label','Success Message','label','Success Message'),(171,8,'objectType','Action','objectType','Action'),(172,8,'objectDomain','actions','objectDomain','actions'),(173,8,'editActive','','editActive',''),(174,8,'message','Your form has been successfully submitted.','message','Your form has been successfully submitted.'),(175,8,'order','1','order','1'),(176,8,'payment_gateways','','payment_gateways',''),(177,8,'payment_total','0','payment_total','0'),(178,8,'tag','','tag',''),(179,8,'to','{wp:admin_email}','to','{wp:admin_email}'),(180,8,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(181,8,'email_message','{fields_table}','email_message','{fields_table}'),(182,8,'from_name','','from_name',''),(183,8,'from_address','','from_address',''),(184,8,'reply_to','','reply_to',''),(185,8,'email_format','html','email_format','html'),(186,8,'cc','','cc',''),(187,8,'bcc','','bcc',''),(188,8,'attach_csv','','attach_csv',''),(189,8,'redirect_url','','redirect_url',''),(190,8,'success_msg','<p>Thank you for registering for our event.</p>','success_msg','<p>Thank you for registering for our event.</p>'),(191,8,'parent_id','2','parent_id','2'),(192,8,'email_message_plain','','email_message_plain',''),(193,8,'submitter_email','','submitter_email',''),(194,8,'fields-save-toggle','save_all','fields-save-toggle','save_all'),(195,8,'exception_fields','a:0:{}','exception_fields','a:0:{}'),(196,8,'set_subs_to_expire','0','set_subs_to_expire','0'),(197,8,'subs_expire_time','90','subs_expire_time','90'),(198,5,'success_msg','Your form has been successfully submitted.','success_msg','Your form has been successfully submitted.');
/*!40000 ALTER TABLE `wp_nf3_action_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_actions`
--

DROP TABLE IF EXISTS `wp_nf3_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_actions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` longtext DEFAULT NULL,
  `key` longtext DEFAULT NULL,
  `type` longtext DEFAULT NULL,
  `active` tinyint(1) DEFAULT 1,
  `parent_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` datetime DEFAULT NULL,
  `label` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_actions`
--

LOCK TABLES `wp_nf3_actions` WRITE;
/*!40000 ALTER TABLE `wp_nf3_actions` DISABLE KEYS */;
INSERT INTO `wp_nf3_actions` VALUES (1,'','','save',1,1,'2023-08-10 07:36:50','2023-08-10 13:06:50','Record Submission'),(2,'','','email',1,1,'2023-08-10 07:36:50','2023-08-10 13:06:50','Email Confirmation'),(3,'','','email',1,1,'2023-08-10 07:36:50','2023-08-10 13:06:50','Email Notification'),(4,'','','successmessage',1,1,'2023-08-10 07:36:50','2023-08-10 13:06:50','Success Message'),(5,'','','save',1,2,'2016-08-28 16:16:05',NULL,'Record Submission'),(6,'','','email',1,2,'2016-08-28 16:16:05',NULL,'User Email Confirmation'),(7,'','','email',1,2,'2016-08-28 16:16:05',NULL,'Admin Email Notification'),(8,'','','successmessage',1,2,'2016-08-28 16:16:05',NULL,'Success Message');
/*!40000 ALTER TABLE `wp_nf3_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_chunks`
--

DROP TABLE IF EXISTS `wp_nf3_chunks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_chunks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) DEFAULT NULL,
  `value` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_chunks`
--

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

--
-- Table structure for table `wp_nf3_field_meta`
--

DROP TABLE IF EXISTS `wp_nf3_field_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_field_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext DEFAULT NULL,
  `meta_key` longtext DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=520 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_field_meta`
--

LOCK TABLES `wp_nf3_field_meta` WRITE;
/*!40000 ALTER TABLE `wp_nf3_field_meta` DISABLE KEYS */;
INSERT INTO `wp_nf3_field_meta` VALUES (1,1,'label_pos','above','label_pos','above'),(2,1,'required','1','required','1'),(3,1,'order','1','order','1'),(4,1,'placeholder','','placeholder',''),(5,1,'default','','default',''),(6,1,'wrapper_class','','wrapper_class',''),(7,1,'element_class','','element_class',''),(8,1,'objectType','Field','objectType','Field'),(9,1,'objectDomain','fields','objectDomain','fields'),(10,1,'editActive','','editActive',''),(11,1,'container_class','','container_class',''),(12,1,'input_limit','','input_limit',''),(13,1,'input_limit_type','characters','input_limit_type','characters'),(14,1,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(15,1,'manual_key','','manual_key',''),(16,1,'disable_input','','disable_input',''),(17,1,'admin_label','','admin_label',''),(18,1,'help_text','','help_text',''),(19,1,'desc_text','','desc_text',''),(20,1,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(21,1,'mask','','mask',''),(22,1,'custom_mask','','custom_mask',''),(23,1,'wrap_styles_background-color','','wrap_styles_background-color',''),(24,1,'wrap_styles_border','','wrap_styles_border',''),(25,1,'wrap_styles_border-style','','wrap_styles_border-style',''),(26,1,'wrap_styles_border-color','','wrap_styles_border-color',''),(27,1,'wrap_styles_color','','wrap_styles_color',''),(28,1,'wrap_styles_height','','wrap_styles_height',''),(29,1,'wrap_styles_width','','wrap_styles_width',''),(30,1,'wrap_styles_font-size','','wrap_styles_font-size',''),(31,1,'wrap_styles_margin','','wrap_styles_margin',''),(32,1,'wrap_styles_padding','','wrap_styles_padding',''),(33,1,'wrap_styles_display','','wrap_styles_display',''),(34,1,'wrap_styles_float','','wrap_styles_float',''),(35,1,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(36,1,'wrap_styles_advanced','','wrap_styles_advanced',''),(37,1,'label_styles_background-color','','label_styles_background-color',''),(38,1,'label_styles_border','','label_styles_border',''),(39,1,'label_styles_border-style','','label_styles_border-style',''),(40,1,'label_styles_border-color','','label_styles_border-color',''),(41,1,'label_styles_color','','label_styles_color',''),(42,1,'label_styles_height','','label_styles_height',''),(43,1,'label_styles_width','','label_styles_width',''),(44,1,'label_styles_font-size','','label_styles_font-size',''),(45,1,'label_styles_margin','','label_styles_margin',''),(46,1,'label_styles_padding','','label_styles_padding',''),(47,1,'label_styles_display','','label_styles_display',''),(48,1,'label_styles_float','','label_styles_float',''),(49,1,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(50,1,'label_styles_advanced','','label_styles_advanced',''),(51,1,'element_styles_background-color','','element_styles_background-color',''),(52,1,'element_styles_border','','element_styles_border',''),(53,1,'element_styles_border-style','','element_styles_border-style',''),(54,1,'element_styles_border-color','','element_styles_border-color',''),(55,1,'element_styles_color','','element_styles_color',''),(56,1,'element_styles_height','','element_styles_height',''),(57,1,'element_styles_width','','element_styles_width',''),(58,1,'element_styles_font-size','','element_styles_font-size',''),(59,1,'element_styles_margin','','element_styles_margin',''),(60,1,'element_styles_padding','','element_styles_padding',''),(61,1,'element_styles_display','','element_styles_display',''),(62,1,'element_styles_float','','element_styles_float',''),(63,1,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(64,1,'element_styles_advanced','','element_styles_advanced',''),(65,1,'cellcid','c3277','cellcid','c3277'),(66,2,'label_pos','above','label_pos','above'),(67,2,'required','1','required','1'),(68,2,'order','2','order','2'),(69,2,'placeholder','','placeholder',''),(70,2,'default','','default',''),(71,2,'wrapper_class','','wrapper_class',''),(72,2,'element_class','','element_class',''),(73,2,'objectType','Field','objectType','Field'),(74,2,'objectDomain','fields','objectDomain','fields'),(75,2,'editActive','','editActive',''),(76,2,'container_class','','container_class',''),(77,2,'admin_label','','admin_label',''),(78,2,'help_text','','help_text',''),(79,2,'desc_text','','desc_text',''),(80,2,'wrap_styles_background-color','','wrap_styles_background-color',''),(81,2,'wrap_styles_border','','wrap_styles_border',''),(82,2,'wrap_styles_border-style','','wrap_styles_border-style',''),(83,2,'wrap_styles_border-color','','wrap_styles_border-color',''),(84,2,'wrap_styles_color','','wrap_styles_color',''),(85,2,'wrap_styles_height','','wrap_styles_height',''),(86,2,'wrap_styles_width','','wrap_styles_width',''),(87,2,'wrap_styles_font-size','','wrap_styles_font-size',''),(88,2,'wrap_styles_margin','','wrap_styles_margin',''),(89,2,'wrap_styles_padding','','wrap_styles_padding',''),(90,2,'wrap_styles_display','','wrap_styles_display',''),(91,2,'wrap_styles_float','','wrap_styles_float',''),(92,2,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(93,2,'wrap_styles_advanced','','wrap_styles_advanced',''),(94,2,'label_styles_background-color','','label_styles_background-color',''),(95,2,'label_styles_border','','label_styles_border',''),(96,2,'label_styles_border-style','','label_styles_border-style',''),(97,2,'label_styles_border-color','','label_styles_border-color',''),(98,2,'label_styles_color','','label_styles_color',''),(99,2,'label_styles_height','','label_styles_height',''),(100,2,'label_styles_width','','label_styles_width',''),(101,2,'label_styles_font-size','','label_styles_font-size',''),(102,2,'label_styles_margin','','label_styles_margin',''),(103,2,'label_styles_padding','','label_styles_padding',''),(104,2,'label_styles_display','','label_styles_display',''),(105,2,'label_styles_float','','label_styles_float',''),(106,2,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(107,2,'label_styles_advanced','','label_styles_advanced',''),(108,2,'element_styles_background-color','','element_styles_background-color',''),(109,2,'element_styles_border','','element_styles_border',''),(110,2,'element_styles_border-style','','element_styles_border-style',''),(111,2,'element_styles_border-color','','element_styles_border-color',''),(112,2,'element_styles_color','','element_styles_color',''),(113,2,'element_styles_height','','element_styles_height',''),(114,2,'element_styles_width','','element_styles_width',''),(115,2,'element_styles_font-size','','element_styles_font-size',''),(116,2,'element_styles_margin','','element_styles_margin',''),(117,2,'element_styles_padding','','element_styles_padding',''),(118,2,'element_styles_display','','element_styles_display',''),(119,2,'element_styles_float','','element_styles_float',''),(120,2,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(121,2,'element_styles_advanced','','element_styles_advanced',''),(122,2,'cellcid','c3281','cellcid','c3281'),(123,3,'label_pos','above','label_pos','above'),(124,3,'required','1','required','1'),(125,3,'order','3','order','3'),(126,3,'placeholder','','placeholder',''),(127,3,'default','','default',''),(128,3,'wrapper_class','','wrapper_class',''),(129,3,'element_class','','element_class',''),(130,3,'objectType','Field','objectType','Field'),(131,3,'objectDomain','fields','objectDomain','fields'),(132,3,'editActive','','editActive',''),(133,3,'container_class','','container_class',''),(134,3,'input_limit','','input_limit',''),(135,3,'input_limit_type','characters','input_limit_type','characters'),(136,3,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(137,3,'manual_key','','manual_key',''),(138,3,'disable_input','','disable_input',''),(139,3,'admin_label','','admin_label',''),(140,3,'help_text','','help_text',''),(141,3,'desc_text','','desc_text',''),(142,3,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(143,3,'textarea_rte','','textarea_rte',''),(144,3,'disable_rte_mobile','','disable_rte_mobile',''),(145,3,'textarea_media','','textarea_media',''),(146,3,'wrap_styles_background-color','','wrap_styles_background-color',''),(147,3,'wrap_styles_border','','wrap_styles_border',''),(148,3,'wrap_styles_border-style','','wrap_styles_border-style',''),(149,3,'wrap_styles_border-color','','wrap_styles_border-color',''),(150,3,'wrap_styles_color','','wrap_styles_color',''),(151,3,'wrap_styles_height','','wrap_styles_height',''),(152,3,'wrap_styles_width','','wrap_styles_width',''),(153,3,'wrap_styles_font-size','','wrap_styles_font-size',''),(154,3,'wrap_styles_margin','','wrap_styles_margin',''),(155,3,'wrap_styles_padding','','wrap_styles_padding',''),(156,3,'wrap_styles_display','','wrap_styles_display',''),(157,3,'wrap_styles_float','','wrap_styles_float',''),(158,3,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(159,3,'wrap_styles_advanced','','wrap_styles_advanced',''),(160,3,'label_styles_background-color','','label_styles_background-color',''),(161,3,'label_styles_border','','label_styles_border',''),(162,3,'label_styles_border-style','','label_styles_border-style',''),(163,3,'label_styles_border-color','','label_styles_border-color',''),(164,3,'label_styles_color','','label_styles_color',''),(165,3,'label_styles_height','','label_styles_height',''),(166,3,'label_styles_width','','label_styles_width',''),(167,3,'label_styles_font-size','','label_styles_font-size',''),(168,3,'label_styles_margin','','label_styles_margin',''),(169,3,'label_styles_padding','','label_styles_padding',''),(170,3,'label_styles_display','','label_styles_display',''),(171,3,'label_styles_float','','label_styles_float',''),(172,3,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(173,3,'label_styles_advanced','','label_styles_advanced',''),(174,3,'element_styles_background-color','','element_styles_background-color',''),(175,3,'element_styles_border','','element_styles_border',''),(176,3,'element_styles_border-style','','element_styles_border-style',''),(177,3,'element_styles_border-color','','element_styles_border-color',''),(178,3,'element_styles_color','','element_styles_color',''),(179,3,'element_styles_height','','element_styles_height',''),(180,3,'element_styles_width','','element_styles_width',''),(181,3,'element_styles_font-size','','element_styles_font-size',''),(182,3,'element_styles_margin','','element_styles_margin',''),(183,3,'element_styles_padding','','element_styles_padding',''),(184,3,'element_styles_display','','element_styles_display',''),(185,3,'element_styles_float','','element_styles_float',''),(186,3,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(187,3,'element_styles_advanced','','element_styles_advanced',''),(188,3,'cellcid','c3284','cellcid','c3284'),(189,4,'processing_label','Processing','processing_label','Processing'),(190,4,'order','5','order','5'),(191,4,'objectType','Field','objectType','Field'),(192,4,'objectDomain','fields','objectDomain','fields'),(193,4,'editActive','','editActive',''),(194,4,'container_class','','container_class',''),(195,4,'element_class','','element_class',''),(196,4,'wrap_styles_background-color','','wrap_styles_background-color',''),(197,4,'wrap_styles_border','','wrap_styles_border',''),(198,4,'wrap_styles_border-style','','wrap_styles_border-style',''),(199,4,'wrap_styles_border-color','','wrap_styles_border-color',''),(200,4,'wrap_styles_color','','wrap_styles_color',''),(201,4,'wrap_styles_height','','wrap_styles_height',''),(202,4,'wrap_styles_width','','wrap_styles_width',''),(203,4,'wrap_styles_font-size','','wrap_styles_font-size',''),(204,4,'wrap_styles_margin','','wrap_styles_margin',''),(205,4,'wrap_styles_padding','','wrap_styles_padding',''),(206,4,'wrap_styles_display','','wrap_styles_display',''),(207,4,'wrap_styles_float','','wrap_styles_float',''),(208,4,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(209,4,'wrap_styles_advanced','','wrap_styles_advanced',''),(210,4,'label_styles_background-color','','label_styles_background-color',''),(211,4,'label_styles_border','','label_styles_border',''),(212,4,'label_styles_border-style','','label_styles_border-style',''),(213,4,'label_styles_border-color','','label_styles_border-color',''),(214,4,'label_styles_color','','label_styles_color',''),(215,4,'label_styles_height','','label_styles_height',''),(216,4,'label_styles_width','','label_styles_width',''),(217,4,'label_styles_font-size','','label_styles_font-size',''),(218,4,'label_styles_margin','','label_styles_margin',''),(219,4,'label_styles_padding','','label_styles_padding',''),(220,4,'label_styles_display','','label_styles_display',''),(221,4,'label_styles_float','','label_styles_float',''),(222,4,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(223,4,'label_styles_advanced','','label_styles_advanced',''),(224,4,'element_styles_background-color','','element_styles_background-color',''),(225,4,'element_styles_border','','element_styles_border',''),(226,4,'element_styles_border-style','','element_styles_border-style',''),(227,4,'element_styles_border-color','','element_styles_border-color',''),(228,4,'element_styles_color','','element_styles_color',''),(229,4,'element_styles_height','','element_styles_height',''),(230,4,'element_styles_width','','element_styles_width',''),(231,4,'element_styles_font-size','','element_styles_font-size',''),(232,4,'element_styles_margin','','element_styles_margin',''),(233,4,'element_styles_padding','','element_styles_padding',''),(234,4,'element_styles_display','','element_styles_display',''),(235,4,'element_styles_float','','element_styles_float',''),(236,4,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(237,4,'element_styles_advanced','','element_styles_advanced',''),(238,4,'submit_element_hover_styles_background-color','','submit_element_hover_styles_background-color',''),(239,4,'submit_element_hover_styles_border','','submit_element_hover_styles_border',''),(240,4,'submit_element_hover_styles_border-style','','submit_element_hover_styles_border-style',''),(241,4,'submit_element_hover_styles_border-color','','submit_element_hover_styles_border-color',''),(242,4,'submit_element_hover_styles_color','','submit_element_hover_styles_color',''),(243,4,'submit_element_hover_styles_height','','submit_element_hover_styles_height',''),(244,4,'submit_element_hover_styles_width','','submit_element_hover_styles_width',''),(245,4,'submit_element_hover_styles_font-size','','submit_element_hover_styles_font-size',''),(246,4,'submit_element_hover_styles_margin','','submit_element_hover_styles_margin',''),(247,4,'submit_element_hover_styles_padding','','submit_element_hover_styles_padding',''),(248,4,'submit_element_hover_styles_display','','submit_element_hover_styles_display',''),(249,4,'submit_element_hover_styles_float','','submit_element_hover_styles_float',''),(250,4,'submit_element_hover_styles_show_advanced_css','0','submit_element_hover_styles_show_advanced_css','0'),(251,4,'submit_element_hover_styles_advanced','','submit_element_hover_styles_advanced',''),(252,4,'cellcid','c3287','cellcid','c3287'),(280,7,'objectType','Field','objectType','Field'),(281,7,'objectDomain','fields','objectDomain','fields'),(282,7,'editActive','','editActive',''),(283,7,'order','1','order','1'),(284,7,'label','Name','label','Name'),(285,7,'key','name_1691654083383','key','name_1691654083383'),(286,7,'type','firstname','type','firstname'),(287,7,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),(288,7,'label_pos','default','label_pos','default'),(289,7,'required','1','required','1'),(290,7,'default','','default',''),(291,7,'placeholder','','placeholder',''),(292,7,'container_class','one-half first','container_class','one-half first'),(293,7,'element_class','','element_class',''),(294,7,'admin_label','','admin_label',''),(295,7,'help_text','','help_text',''),(296,7,'desc_text','','desc_text',''),(297,7,'field_label','First Name','field_label','First Name'),(298,7,'field_key','firstname','field_key','firstname'),(299,7,'custom_name_attribute','fname','custom_name_attribute','fname'),(300,7,'personally_identifiable','1','personally_identifiable','1'),(301,7,'value','','value',''),(302,7,'parent_id','2','parent_id','2'),(326,9,'objectType','Field','objectType','Field'),(327,9,'objectDomain','fields','objectDomain','fields'),(328,9,'editActive','','editActive',''),(329,9,'order','3','order','3'),(330,9,'label','Email','label','Email'),(331,9,'key','email','key','email'),(332,9,'type','email','type','email'),(333,9,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),(334,9,'label_pos','default','label_pos','default'),(335,9,'required','0','required','0'),(336,9,'default','','default',''),(337,9,'placeholder','','placeholder',''),(338,9,'container_class','one-half first','container_class','one-half first'),(339,9,'element_class','','element_class',''),(340,9,'admin_label','','admin_label',''),(341,9,'help_text','','help_text',''),(342,9,'desc_text','','desc_text',''),(343,9,'field_label','Email','field_label','Email'),(344,9,'field_key','email','field_key','email'),(345,9,'custom_name_attribute','email','custom_name_attribute','email'),(346,9,'personally_identifiable','1','personally_identifiable','1'),(347,9,'value','','value',''),(348,9,'parent_id','2','parent_id','2'),(349,10,'objectType','Field','objectType','Field'),(350,10,'objectDomain','fields','objectDomain','fields'),(351,10,'editActive','','editActive',''),(352,10,'order','2','order','2'),(353,10,'label','Phone','label','Phone'),(354,10,'key','phone_1691654745870','key','phone_1691654745870'),(355,10,'type','textbox','type','textbox'),(356,10,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),(357,10,'label_pos','default','label_pos','default'),(358,10,'required','1','required','1'),(359,10,'placeholder','','placeholder',''),(360,10,'default','','default',''),(361,10,'container_class','one-half','container_class','one-half'),(362,10,'element_class','','element_class',''),(363,10,'input_limit','','input_limit',''),(364,10,'input_limit_type','characters','input_limit_type','characters'),(365,10,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(366,10,'manual_key','','manual_key',''),(367,10,'disable_input','','disable_input',''),(368,10,'admin_label','','admin_label',''),(369,10,'help_text','','help_text',''),(370,10,'desc_text','','desc_text',''),(371,10,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(372,10,'mask','','mask',''),(373,10,'custom_mask','','custom_mask',''),(374,10,'field_label','Phone','field_label','Phone'),(375,10,'field_key','textbox','field_key','textbox'),(376,10,'custom_name_attribute','','custom_name_attribute',''),(377,10,'personally_identifiable','','personally_identifiable',''),(378,10,'value','','value',''),(379,10,'parent_id','2','parent_id','2'),(478,17,'objectType','Field','objectType','Field'),(479,17,'objectDomain','fields','objectDomain','fields'),(480,17,'editActive','','editActive',''),(481,17,'order','5','order','5'),(482,17,'label','Register','label','Register'),(483,17,'key','register','key','register'),(484,17,'type','submit','type','submit'),(485,17,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),(486,17,'processing_label','Processing','processing_label','Processing'),(487,17,'container_class','','container_class',''),(488,17,'element_class','','element_class',''),(489,17,'field_label','Register','field_label','Register'),(490,17,'field_key','register','field_key','register'),(491,17,'parent_id','2','parent_id','2'),(492,7,'idAttribute','id','idAttribute','id'),(493,7,'drawerDisabled','','drawerDisabled',''),(494,10,'idAttribute','id','idAttribute','id'),(495,9,'idAttribute','id','idAttribute','id'),(496,18,'editActive','','editActive',''),(497,18,'order','4','order','4'),(498,18,'idAttribute','id','idAttribute','id'),(499,18,'type','date','type','date'),(500,18,'label','Date/Time','label','Date/Time'),(501,18,'key','date_1691654256012','key','date_1691654256012'),(502,18,'label_pos','default','label_pos','default'),(503,18,'required','1','required','1'),(504,18,'placeholder','','placeholder',''),(505,18,'container_class','','container_class',''),(506,18,'element_class','','element_class',''),(507,18,'manual_key','','manual_key',''),(508,18,'admin_label','','admin_label',''),(509,18,'help_text','','help_text',''),(510,18,'date_mode','date_and_time','date_mode','date_and_time'),(511,18,'date_format','dddd, MMMM D YYYY','date_format','dddd, MMMM D YYYY'),(512,18,'year_range_start','','year_range_start',''),(513,18,'year_range_end','','year_range_end',''),(514,18,'hours_24','0','hours_24','0'),(515,18,'minute_increment','5','minute_increment','5'),(516,18,'drawerDisabled','','drawerDisabled',''),(517,17,'idAttribute','id','idAttribute','id'),(518,10,'drawerDisabled','','drawerDisabled',''),(519,17,'drawerDisabled','','drawerDisabled','');
/*!40000 ALTER TABLE `wp_nf3_field_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_fields`
--

DROP TABLE IF EXISTS `wp_nf3_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `label` longtext DEFAULT NULL,
  `key` longtext DEFAULT NULL,
  `type` longtext DEFAULT NULL,
  `parent_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` datetime DEFAULT NULL,
  `field_label` longtext DEFAULT NULL,
  `field_key` longtext DEFAULT NULL,
  `order` int(11) DEFAULT NULL,
  `required` bit(1) DEFAULT NULL,
  `default_value` longtext DEFAULT NULL,
  `label_pos` varchar(15) DEFAULT NULL,
  `personally_identifiable` bit(1) DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_fields`
--

LOCK TABLES `wp_nf3_fields` WRITE;
/*!40000 ALTER TABLE `wp_nf3_fields` DISABLE KEYS */;
INSERT INTO `wp_nf3_fields` VALUES (1,'Name','name','textbox',1,'2023-08-10 13:06:49','2023-08-10 13:06:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,'Email','email','email',1,'2023-08-10 13:06:49','2023-08-10 13:06:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,'Message','message','textarea',1,'2023-08-10 13:06:49','2023-08-10 13:06:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,'Submit','submit','submit',1,'2023-08-10 13:06:49','2023-08-10 13:06:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,'Name','name_1691654083383','firstname',2,'2023-08-10 07:58:32',NULL,'Name','name_1691654083383',1,'','','default',''),(9,'Email','email','email',2,'2023-08-10 07:58:32',NULL,'Email','email',3,'\0','','default',''),(10,'Phone','phone_1691654745870','textbox',2,'2023-08-10 08:05:52',NULL,'Phone','phone_1691654745870',2,'','','default','\0'),(17,'Register','register','submit',2,'2023-08-10 07:58:32',NULL,'Register','register',5,'\0','','','\0'),(18,'Date/Time','date_1691654256012','date',2,'2023-08-10 07:58:32',NULL,'Date/Time','date_1691654256012',4,'','','default','\0');
/*!40000 ALTER TABLE `wp_nf3_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_form_meta`
--

DROP TABLE IF EXISTS `wp_nf3_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_form_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext DEFAULT NULL,
  `meta_key` longtext DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=124 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_form_meta`
--

LOCK TABLES `wp_nf3_form_meta` WRITE;
/*!40000 ALTER TABLE `wp_nf3_form_meta` DISABLE KEYS */;
INSERT INTO `wp_nf3_form_meta` VALUES (1,1,'key','','key',''),(2,1,'created_at','2023-08-10 13:06:48','created_at','2023-08-10 13:06:48'),(3,1,'default_label_pos','above','default_label_pos','above'),(4,1,'conditions','a:0:{}','conditions','a:0:{}'),(5,1,'objectType','Form Setting','objectType','Form Setting'),(6,1,'editActive','','editActive',''),(7,1,'show_title','1','show_title','1'),(8,1,'clear_complete','1','clear_complete','1'),(9,1,'hide_complete','1','hide_complete','1'),(10,1,'wrapper_class','','wrapper_class',''),(11,1,'element_class','','element_class',''),(12,1,'add_submit','1','add_submit','1'),(13,1,'logged_in','','logged_in',''),(14,1,'not_logged_in_msg','','not_logged_in_msg',''),(15,1,'sub_limit_number','','sub_limit_number',''),(16,1,'sub_limit_msg','','sub_limit_msg',''),(17,1,'calculations','a:0:{}','calculations','a:0:{}'),(18,1,'formContentData','a:4:{i:0;a:2:{s:5:\"order\";s:1:\"0\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:4:\"name\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";s:1:\"1\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:5:\"email\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";s:1:\"2\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:7:\"message\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";s:1:\"3\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:6:\"submit\";}s:5:\"width\";s:3:\"100\";}}}}','formContentData','a:4:{i:0;a:2:{s:5:\"order\";s:1:\"0\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:4:\"name\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";s:1:\"1\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:5:\"email\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";s:1:\"2\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:7:\"message\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";s:1:\"3\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:6:\"submit\";}s:5:\"width\";s:3:\"100\";}}}}'),(19,1,'container_styles_background-color','','container_styles_background-color',''),(20,1,'container_styles_border','','container_styles_border',''),(21,1,'container_styles_border-style','','container_styles_border-style',''),(22,1,'container_styles_border-color','','container_styles_border-color',''),(23,1,'container_styles_color','','container_styles_color',''),(24,1,'container_styles_height','','container_styles_height',''),(25,1,'container_styles_width','','container_styles_width',''),(26,1,'container_styles_font-size','','container_styles_font-size',''),(27,1,'container_styles_margin','','container_styles_margin',''),(28,1,'container_styles_padding','','container_styles_padding',''),(29,1,'container_styles_display','','container_styles_display',''),(30,1,'container_styles_float','','container_styles_float',''),(31,1,'container_styles_show_advanced_css','0','container_styles_show_advanced_css','0'),(32,1,'container_styles_advanced','','container_styles_advanced',''),(33,1,'title_styles_background-color','','title_styles_background-color',''),(34,1,'title_styles_border','','title_styles_border',''),(35,1,'title_styles_border-style','','title_styles_border-style',''),(36,1,'title_styles_border-color','','title_styles_border-color',''),(37,1,'title_styles_color','','title_styles_color',''),(38,1,'title_styles_height','','title_styles_height',''),(39,1,'title_styles_width','','title_styles_width',''),(40,1,'title_styles_font-size','','title_styles_font-size',''),(41,1,'title_styles_margin','','title_styles_margin',''),(42,1,'title_styles_padding','','title_styles_padding',''),(43,1,'title_styles_display','','title_styles_display',''),(44,1,'title_styles_float','','title_styles_float',''),(45,1,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),(46,1,'title_styles_advanced','','title_styles_advanced',''),(47,1,'row_styles_background-color','','row_styles_background-color',''),(48,1,'row_styles_border','','row_styles_border',''),(49,1,'row_styles_border-style','','row_styles_border-style',''),(50,1,'row_styles_border-color','','row_styles_border-color',''),(51,1,'row_styles_color','','row_styles_color',''),(52,1,'row_styles_height','','row_styles_height',''),(53,1,'row_styles_width','','row_styles_width',''),(54,1,'row_styles_font-size','','row_styles_font-size',''),(55,1,'row_styles_margin','','row_styles_margin',''),(56,1,'row_styles_padding','','row_styles_padding',''),(57,1,'row_styles_display','','row_styles_display',''),(58,1,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),(59,1,'row_styles_advanced','','row_styles_advanced',''),(60,1,'row-odd_styles_background-color','','row-odd_styles_background-color',''),(61,1,'row-odd_styles_border','','row-odd_styles_border',''),(62,1,'row-odd_styles_border-style','','row-odd_styles_border-style',''),(63,1,'row-odd_styles_border-color','','row-odd_styles_border-color',''),(64,1,'row-odd_styles_color','','row-odd_styles_color',''),(65,1,'row-odd_styles_height','','row-odd_styles_height',''),(66,1,'row-odd_styles_width','','row-odd_styles_width',''),(67,1,'row-odd_styles_font-size','','row-odd_styles_font-size',''),(68,1,'row-odd_styles_margin','','row-odd_styles_margin',''),(69,1,'row-odd_styles_padding','','row-odd_styles_padding',''),(70,1,'row-odd_styles_display','','row-odd_styles_display',''),(71,1,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),(72,1,'row-odd_styles_advanced','','row-odd_styles_advanced',''),(73,1,'success-msg_styles_background-color','','success-msg_styles_background-color',''),(74,1,'success-msg_styles_border','','success-msg_styles_border',''),(75,1,'success-msg_styles_border-style','','success-msg_styles_border-style',''),(76,1,'success-msg_styles_border-color','','success-msg_styles_border-color',''),(77,1,'success-msg_styles_color','','success-msg_styles_color',''),(78,1,'success-msg_styles_height','','success-msg_styles_height',''),(79,1,'success-msg_styles_width','','success-msg_styles_width',''),(80,1,'success-msg_styles_font-size','','success-msg_styles_font-size',''),(81,1,'success-msg_styles_margin','','success-msg_styles_margin',''),(82,1,'success-msg_styles_padding','','success-msg_styles_padding',''),(83,1,'success-msg_styles_display','','success-msg_styles_display',''),(84,1,'success-msg_styles_show_advanced_css','0','success-msg_styles_show_advanced_css','0'),(85,1,'success-msg_styles_advanced','','success-msg_styles_advanced',''),(86,1,'error_msg_styles_background-color','','error_msg_styles_background-color',''),(87,1,'error_msg_styles_border','','error_msg_styles_border',''),(88,1,'error_msg_styles_border-style','','error_msg_styles_border-style',''),(89,1,'error_msg_styles_border-color','','error_msg_styles_border-color',''),(90,1,'error_msg_styles_color','','error_msg_styles_color',''),(91,1,'error_msg_styles_height','','error_msg_styles_height',''),(92,1,'error_msg_styles_width','','error_msg_styles_width',''),(93,1,'error_msg_styles_font-size','','error_msg_styles_font-size',''),(94,1,'error_msg_styles_margin','','error_msg_styles_margin',''),(95,1,'error_msg_styles_padding','','error_msg_styles_padding',''),(96,1,'error_msg_styles_display','','error_msg_styles_display',''),(97,1,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),(98,1,'error_msg_styles_advanced','','error_msg_styles_advanced',''),(99,2,'objectType','Form Setting','objectType','Form Setting'),(100,2,'editActive','','editActive',''),(101,2,'title','Event Registration','title','Event Registration'),(102,2,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),(103,2,'form_title','Event Registration','form_title','Event Registration'),(104,2,'default_label_pos','above','default_label_pos','above'),(105,2,'show_title','1','show_title','1'),(106,2,'clear_complete','1','clear_complete','1'),(107,2,'hide_complete','1','hide_complete','1'),(108,2,'logged_in','0','logged_in','0'),(109,2,'key','','key',''),(110,2,'wrapper_class','','wrapper_class',''),(111,2,'element_class','','element_class',''),(112,2,'add_submit','0','add_submit','0'),(113,2,'not_logged_in_msg','','not_logged_in_msg',''),(114,2,'sub_limit_number','','sub_limit_number',''),(115,2,'sub_limit_msg','','sub_limit_msg',''),(116,2,'calculations','a:0:{}','calculations','a:0:{}'),(117,2,'formContentData','a:5:{i:0;s:18:\"name_1691654083383\";i:1;s:19:\"phone_1691654745870\";i:2;s:5:\"email\";i:3;s:18:\"date_1691654256012\";i:4;s:8:\"register\";}','formContentData','a:5:{i:0;s:18:\"name_1691654083383\";i:1;s:19:\"phone_1691654745870\";i:2;s:5:\"email\";i:3;s:18:\"date_1691654256012\";i:4;s:8:\"register\";}'),(118,2,'currency','','currency',''),(119,2,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),(120,2,'seq_num',NULL,'seq_num',NULL),(121,2,'allow_public_link','0','allow_public_link','0'),(122,2,'embed_form','','embed_form',''),(123,2,'form_title_heading_level','3','form_title_heading_level','3');
/*!40000 ALTER TABLE `wp_nf3_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_forms`
--

DROP TABLE IF EXISTS `wp_nf3_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` longtext DEFAULT NULL,
  `key` longtext DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` datetime DEFAULT NULL,
  `views` int(11) DEFAULT NULL,
  `subs` int(11) DEFAULT NULL,
  `form_title` longtext DEFAULT NULL,
  `default_label_pos` varchar(15) DEFAULT NULL,
  `show_title` bit(1) DEFAULT NULL,
  `clear_complete` bit(1) DEFAULT NULL,
  `hide_complete` bit(1) DEFAULT NULL,
  `logged_in` bit(1) DEFAULT NULL,
  `seq_num` int(11) DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_forms`
--

LOCK TABLES `wp_nf3_forms` WRITE;
/*!40000 ALTER TABLE `wp_nf3_forms` DISABLE KEYS */;
INSERT INTO `wp_nf3_forms` VALUES (1,'Contact Me',NULL,'2023-08-10 07:36:49','2023-08-10 13:06:48',NULL,NULL,'Contact Me','above','','','','\0',NULL),(2,'Event Registration',NULL,'2016-08-28 16:16:05',NULL,NULL,NULL,'Event Registration','above','','','','\0',NULL);
/*!40000 ALTER TABLE `wp_nf3_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_object_meta`
--

DROP TABLE IF EXISTS `wp_nf3_object_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_object_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext DEFAULT NULL,
  `meta_key` longtext DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_object_meta`
--

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

--
-- Table structure for table `wp_nf3_objects`
--

DROP TABLE IF EXISTS `wp_nf3_objects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_objects` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` longtext DEFAULT NULL,
  `title` longtext DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` datetime DEFAULT NULL,
  `object_title` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_objects`
--

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

--
-- Table structure for table `wp_nf3_relationships`
--

DROP TABLE IF EXISTS `wp_nf3_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_relationships` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `child_id` int(11) NOT NULL,
  `child_type` longtext NOT NULL,
  `parent_id` int(11) NOT NULL,
  `parent_type` longtext NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_relationships`
--

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

--
-- Table structure for table `wp_nf3_upgrades`
--

DROP TABLE IF EXISTS `wp_nf3_upgrades`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_upgrades` (
  `id` int(11) NOT NULL,
  `cache` longtext DEFAULT NULL,
  `stage` int(11) NOT NULL DEFAULT 0,
  `maintenance` bit(1) DEFAULT b'0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_upgrades`
--

LOCK TABLES `wp_nf3_upgrades` WRITE;
/*!40000 ALTER TABLE `wp_nf3_upgrades` DISABLE KEYS */;
INSERT INTO `wp_nf3_upgrades` VALUES (1,'a:4:{s:2:\"id\";i:1;s:6:\"fields\";a:4:{i:0;a:2:{s:2:\"id\";i:1;s:8:\"settings\";a:70:{s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:9:\"parent_id\";i:1;s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2023-08-10 13:06:49\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3277\";}}i:1;a:2:{s:2:\"id\";i:2;s:8:\"settings\";a:62:{s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:9:\"parent_id\";i:1;s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2023-08-10 13:06:49\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"2\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3281\";}}i:2;a:2:{s:2:\"id\";i:3;s:8:\"settings\";a:71:{s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:7:\"message\";s:9:\"parent_id\";i:1;s:4:\"type\";s:8:\"textarea\";s:10:\"created_at\";s:19:\"2023-08-10 13:06:49\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"3\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3284\";}}i:3;a:2:{s:2:\"id\";i:4;s:8:\"settings\";a:69:{s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:6:\"submit\";s:9:\"parent_id\";i:1;s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2023-08-10 13:06:49\";s:16:\"processing_label\";s:10:\"Processing\";s:5:\"order\";s:1:\"5\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:44:\"submit_element_hover_styles_background-color\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:40:\"submit_element_hover_styles_border-style\";s:0:\"\";s:40:\"submit_element_hover_styles_border-color\";s:0:\"\";s:33:\"submit_element_hover_styles_color\";s:0:\"\";s:34:\"submit_element_hover_styles_height\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:35:\"submit_element_hover_styles_display\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:36:\"submit_element_hover_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3287\";}}}s:7:\"actions\";a:4:{i:0;a:2:{s:2:\"id\";i:1;s:8:\"settings\";a:25:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2023-08-10 13:06:50\";s:5:\"label\";s:17:\"Record Submission\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:13:\"email_message\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}}i:1;a:2:{s:2:\"id\";i:2;s:8:\"settings\";a:26:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2023-08-10 13:06:50\";s:5:\"label\";s:18:\"Email Confirmation\";s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:24:\"This is an email action.\";s:7:\"message\";s:19:\"Hello, Ninja Forms!\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:24:\"Submission Confirmation \";s:13:\"email_message\";s:29:\"<p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}}i:2;a:2:{s:2:\"id\";i:3;s:8:\"settings\";a:24:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2023-08-10 13:06:50\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:20:\"{system:admin_email}\";s:13:\"email_subject\";s:29:\"New message from {field:name}\";s:13:\"email_message\";s:60:\"<p>{field:message}</p><p>-{field:name} ( {field:email} )</p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:13:\"{field:email}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:1:\"0\";s:19:\"email_message_plain\";s:0:\"\";}}i:3;a:2:{s:2:\"id\";i:4;s:8:\"settings\";a:27:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2023-08-10 13:06:50\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:47:\"Thank you {field:name} for filling out my form!\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:13:\"email_message\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:89:\"<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:email}.</p>\";s:19:\"email_message_plain\";s:0:\"\";}}}s:8:\"settings\";a:99:{s:5:\"title\";s:10:\"Contact Me\";s:3:\"key\";s:0:\"\";s:10:\"created_at\";s:19:\"2023-08-10 13:06:48\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"conditions\";a:0:{}s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:0:\"\";s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"1\";s:9:\"logged_in\";s:0:\"\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:4:{i:0;a:2:{s:5:\"order\";s:1:\"0\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:4:\"name\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";s:1:\"1\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:5:\"email\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";s:1:\"2\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:7:\"message\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";s:1:\"3\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:6:\"submit\";}s:5:\"width\";s:3:\"100\";}}}}s:33:\"container_styles_background-color\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:29:\"container_styles_border-style\";s:0:\"\";s:29:\"container_styles_border-color\";s:0:\"\";s:22:\"container_styles_color\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:22:\"container_styles_width\";s:0:\"\";s:26:\"container_styles_font-size\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:24:\"container_styles_display\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:25:\"container_styles_advanced\";s:0:\"\";s:29:\"title_styles_background-color\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:25:\"title_styles_border-style\";s:0:\"\";s:25:\"title_styles_border-color\";s:0:\"\";s:18:\"title_styles_color\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:20:\"title_styles_display\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:21:\"title_styles_advanced\";s:0:\"\";s:27:\"row_styles_background-color\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:23:\"row_styles_border-style\";s:0:\"\";s:23:\"row_styles_border-color\";s:0:\"\";s:16:\"row_styles_color\";s:0:\"\";s:17:\"row_styles_height\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:18:\"row_styles_display\";s:0:\"\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:19:\"row_styles_advanced\";s:0:\"\";s:31:\"row-odd_styles_background-color\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:27:\"row-odd_styles_border-style\";s:0:\"\";s:27:\"row-odd_styles_border-color\";s:0:\"\";s:20:\"row-odd_styles_color\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:22:\"row-odd_styles_display\";s:0:\"\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:23:\"row-odd_styles_advanced\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:0:\"\";s:25:\"success-msg_styles_border\";s:0:\"\";s:31:\"success-msg_styles_border-style\";s:0:\"\";s:31:\"success-msg_styles_border-color\";s:0:\"\";s:24:\"success-msg_styles_color\";s:0:\"\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:0:\"\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:26:\"success-msg_styles_display\";s:0:\"\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:27:\"success-msg_styles_advanced\";s:0:\"\";s:33:\"error_msg_styles_background-color\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:29:\"error_msg_styles_border-style\";s:0:\"\";s:29:\"error_msg_styles_border-color\";s:0:\"\";s:22:\"error_msg_styles_color\";s:0:\"\";s:23:\"error_msg_styles_height\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:24:\"error_msg_styles_display\";s:0:\"\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:25:\"error_msg_styles_advanced\";s:0:\"\";}}',4,'\0'),(2,'a:7:{s:2:\"id\";i:2;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:5:{i:0;a:2:{s:8:\"settings\";a:24:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:1;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:18:\"name_1691654083383\";s:4:\"type\";s:9:\"firstname\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:14:\"one-half first\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:11:\"field_label\";s:10:\"First Name\";s:9:\"field_key\";s:9:\"firstname\";s:21:\"custom_name_attribute\";s:5:\"fname\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:7;}i:1;a:2:{s:8:\"settings\";a:32:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:2;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:19:\"phone_1691654745870\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:15:\"container_class\";s:8:\"one-half\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:11:\"field_label\";s:5:\"Phone\";s:9:\"field_key\";s:7:\"textbox\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:10;}i:2;a:2:{s:8:\"settings\";a:23:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:3;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";i:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:14:\"one-half first\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:5:\"email\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:9;}i:3;a:2:{s:8:\"settings\";a:23:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:4;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"date\";s:5:\"label\";s:9:\"Date/Time\";s:3:\"key\";s:18:\"date_1691654256012\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";i:1;s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"date_mode\";s:13:\"date_and_time\";s:11:\"date_format\";s:17:\"dddd, MMMM D YYYY\";s:16:\"year_range_start\";s:0:\"\";s:14:\"year_range_end\";s:0:\"\";s:8:\"hours_24\";i:0;s:16:\"minute_increment\";i:5;s:14:\"drawerDisabled\";b:0;}s:2:\"id\";s:2:\"18\";}i:4;a:2:{s:8:\"settings\";a:15:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:5;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:8:\"Register\";s:3:\"key\";s:8:\"register\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:8:\"Register\";s:9:\"field_key\";s:8:\"register\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:17;}}s:7:\"actions\";a:4:{i:0;a:2:{s:8:\"settings\";a:31:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:42:\"Your form has been successfully submitted.\";s:5:\"order\";s:1:\"1\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:47:\"<p>Thank you for registering for our event.</p>\";s:19:\"email_message_plain\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";}s:2:\"id\";i:8;}i:1;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:23:\"User Email Confirmation\";s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:22:\"Ninja Forms Submission\";s:7:\"message\";s:18:\"{all_fields_table}\";s:5:\"order\";s:1:\"2\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:39:\"Thank you for registering for our event\";s:13:\"email_message\";s:72:\"<p>Your registration details are below:</p><p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:20:\"{system:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:6;}i:2;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:24:\"Admin Email Notification\";s:2:\"to\";s:20:\"{system:admin_email}\";s:7:\"subject\";s:22:\"Ninja Forms Submission\";s:7:\"message\";s:18:\"{all_fields_table}\";s:5:\"order\";s:1:\"2\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:55:\"New Event Registration from {field:name_1691654083383} \";s:13:\"email_message\";s:67:\"<p>Registration details are below:</p><p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:13:\"{field:email}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:7;}i:3;a:2:{s:8:\"settings\";a:31:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:17:\"Record Submission\";s:5:\"order\";s:1:\"3\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:7:\"message\";s:160:\"This action adds users to WordPress\' personal data export tool, allowing admins to comply with the GDPR and other privacy regulations from the site\'s front end.\";s:19:\"email_message_plain\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";}s:2:\"id\";i:5;}}s:8:\"settings\";a:24:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:18:\"Event Registration\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:10:\"form_title\";s:18:\"Event Registration\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:3:\"key\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"0\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:5:{i:0;s:18:\"name_1691654083383\";i:1;s:19:\"phone_1691654745870\";i:2;s:5:\"email\";i:3;s:18:\"date_1691654256012\";i:4;s:8:\"register\";}s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:24:\"form_title_heading_level\";s:1:\"3\";}s:14:\"deleted_fields\";a:9:{i:5;i:5;i:6;i:6;i:8;i:8;i:11;i:11;i:12;i:12;i:13;i:13;i:14;i:14;i:15;i:15;i:16;i:16;}s:15:\"deleted_actions\";a:0:{}}',4,'\0');
/*!40000 ALTER TABLE `wp_nf3_upgrades` 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=693 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://salandingpage.in8.cdn-alpha.com','yes'),(2,'home','https://salandingpage.in8.cdn-alpha.com','yes'),(3,'blogname','My WordPress','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','wp@dxpsites.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:140:{s:29:\"^ninja-forms/([a-zA-Z0-9]+)/?\";s:36:\"index.php?nf_public_link=$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:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"elementskit-content/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"elementskit-content/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"elementskit-content/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"elementskit-content/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"elementskit-content/(.+?)/embed/?$\";s:52:\"index.php?elementskit_content=$matches[1]&embed=true\";s:38:\"elementskit-content/(.+?)/trackback/?$\";s:46:\"index.php?elementskit_content=$matches[1]&tb=1\";s:46:\"elementskit-content/(.+?)/page/?([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&paged=$matches[2]\";s:53:\"elementskit-content/(.+?)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&cpage=$matches[2]\";s:42:\"elementskit-content/(.+?)(?:/([0-9]+))?/?$\";s:58:\"index.php?elementskit_content=$matches[1]&page=$matches[2]\";s:34:\"nf_sub/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"nf_sub/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"nf_sub/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"nf_sub/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"nf_sub/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"nf_sub/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"nf_sub/([^/]+)/embed/?$\";s:39:\"index.php?nf_sub=$matches[1]&embed=true\";s:27:\"nf_sub/([^/]+)/trackback/?$\";s:33:\"index.php?nf_sub=$matches[1]&tb=1\";s:35:\"nf_sub/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&paged=$matches[2]\";s:42:\"nf_sub/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&cpage=$matches[2]\";s:31:\"nf_sub/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?nf_sub=$matches[1]&page=$matches[2]\";s:23:\"nf_sub/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"nf_sub/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"nf_sub/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"nf_sub/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"nf_sub/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"nf_sub/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=37&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:8:{i:0;s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";i:1;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:37:\"elementskit-lite/elementskit-lite.php\";i:4;s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";i:5;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:6;s:27:\"ninja-forms/ninja-forms.php\";i:7;s:43:\"template-kit-import/template-kit-import.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','5.5','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','hello-elementor','yes'),(41,'stylesheet','hello-elementor','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','55853','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:27:\"ninja-forms/ninja-forms.php\";s:21:\"ninja_forms_uninstall\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','37','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1707110931','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','55853','yes'),(100,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:87:{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:30:\"edit_free-to-view live channel\";b:1;s:30:\"read_free-to-view live channel\";b:1;s:32:\"delete_free-to-view live channel\";b:1;s:31:\"edit_free-to-view live channels\";b:1;s:38:\"edit_others_free-to-view live channels\";b:1;s:34:\"publish_free-to-view live channels\";b:1;s:39:\"read_private_free-to-view live channels\";b:1;s:33:\"delete_free-to-view live channels\";b:1;s:41:\"delete_private_free-to-view live channels\";b:1;s:43:\"delete_published_free-to-view live channels\";b:1;s:40:\"delete_others_free-to-view live channels\";b:1;s:39:\"edit_private_free-to-view live channels\";b:1;s:41:\"edit_published_free-to-view live channels\";b:1;s:21:\"edit_free-to-view vod\";b:1;s:21:\"read_free-to-view vod\";b:1;s:23:\"delete_free-to-view vod\";b:1;s:22:\"edit_free-to-view vods\";b:1;s:29:\"edit_others_free-to-view vods\";b:1;s:25:\"publish_free-to-view vods\";b:1;s:30:\"read_private_free-to-view vods\";b:1;s:24:\"delete_free-to-view vods\";b:1;s:32:\"delete_private_free-to-view vods\";b:1;s:34:\"delete_published_free-to-view vods\";b:1;s:31:\"delete_others_free-to-view vods\";b:1;s:30:\"edit_private_free-to-view vods\";b:1;s:32:\"edit_published_free-to-view vods\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','1','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:13:{i:1691558932;a:7:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1691559200;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1691559202;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:1691559260;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1691559330;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:1691644097;a:1:{s:34:\"elementor_1_elementor_updater_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:43:\"elementor_1_elementor_updater_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1691645332;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:1691645601;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1691653010;a:1:{s:24:\"wp_nf_update_fields_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:33:\"wp_nf_update_fields_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1691672811;a:1:{s:22:\"nf_marketing_feed_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"nf-weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1691672812;a:1:{s:26:\"nf_weekly_promotion_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"nf-weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1691672815;a:1:{s:13:\"nf_optin_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"nf-monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2678400;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'_transient_wp_core_block_css_files','a:496:{i:0;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/archives/editor-rtl.css\";i:1;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/archives/editor-rtl.min.css\";i:2;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/archives/editor.css\";i:3;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/archives/editor.min.css\";i:4;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/archives/style-rtl.css\";i:5;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/archives/style-rtl.min.css\";i:6;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/archives/style.css\";i:7;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/archives/style.min.css\";i:8;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/audio/editor-rtl.css\";i:9;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/audio/editor-rtl.min.css\";i:10;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/audio/editor.css\";i:11;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/audio/editor.min.css\";i:12;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/audio/style-rtl.css\";i:13;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/audio/style-rtl.min.css\";i:14;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/audio/style.css\";i:15;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/audio/style.min.css\";i:16;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/audio/theme-rtl.css\";i:17;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/audio/theme-rtl.min.css\";i:18;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/audio/theme.css\";i:19;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/audio/theme.min.css\";i:20;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/avatar/editor-rtl.css\";i:21;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/avatar/editor-rtl.min.css\";i:22;s:78:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/avatar/editor.css\";i:23;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/avatar/editor.min.css\";i:24;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/avatar/style-rtl.css\";i:25;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/avatar/style-rtl.min.css\";i:26;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/avatar/style.css\";i:27;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/avatar/style.min.css\";i:28;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/block/editor-rtl.css\";i:29;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/block/editor-rtl.min.css\";i:30;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/block/editor.css\";i:31;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/block/editor.min.css\";i:32;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/button/editor-rtl.css\";i:33;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/button/editor-rtl.min.css\";i:34;s:78:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/button/editor.css\";i:35;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/button/editor.min.css\";i:36;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/button/style-rtl.css\";i:37;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/button/style-rtl.min.css\";i:38;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/button/style.css\";i:39;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/button/style.min.css\";i:40;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/buttons/editor-rtl.css\";i:41;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/buttons/editor-rtl.min.css\";i:42;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/buttons/editor.css\";i:43;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/buttons/editor.min.css\";i:44;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/buttons/style-rtl.css\";i:45;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/buttons/style-rtl.min.css\";i:46;s:78:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/buttons/style.css\";i:47;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/buttons/style.min.css\";i:48;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/calendar/style-rtl.css\";i:49;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/calendar/style-rtl.min.css\";i:50;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/calendar/style.css\";i:51;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/calendar/style.min.css\";i:52;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/categories/editor-rtl.css\";i:53;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/categories/editor-rtl.min.css\";i:54;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/categories/editor.css\";i:55;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/categories/editor.min.css\";i:56;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/categories/style-rtl.css\";i:57;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/categories/style-rtl.min.css\";i:58;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/categories/style.css\";i:59;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/categories/style.min.css\";i:60;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/code/editor-rtl.css\";i:61;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/code/editor-rtl.min.css\";i:62;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/code/editor.css\";i:63;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/code/editor.min.css\";i:64;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/code/style-rtl.css\";i:65;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/code/style-rtl.min.css\";i:66;s:75:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/code/style.css\";i:67;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/code/style.min.css\";i:68;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/code/theme-rtl.css\";i:69;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/code/theme-rtl.min.css\";i:70;s:75:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/code/theme.css\";i:71;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/code/theme.min.css\";i:72;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/columns/editor-rtl.css\";i:73;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/columns/editor-rtl.min.css\";i:74;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/columns/editor.css\";i:75;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/columns/editor.min.css\";i:76;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/columns/style-rtl.css\";i:77;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/columns/style-rtl.min.css\";i:78;s:78:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/columns/style.css\";i:79;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/columns/style.min.css\";i:80;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comment-content/style-rtl.css\";i:81;s:94:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comment-content/style-rtl.min.css\";i:82;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comment-content/style.css\";i:83;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comment-content/style.min.css\";i:84;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comment-template/style-rtl.css\";i:85;s:95:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comment-template/style-rtl.min.css\";i:86;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comment-template/style.css\";i:87;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comment-template/style.min.css\";i:88;s:103:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-pagination-numbers/editor-rtl.css\";i:89;s:107:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css\";i:90;s:99:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-pagination-numbers/editor.css\";i:91;s:103:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-pagination-numbers/editor.min.css\";i:92;s:95:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-pagination/editor-rtl.css\";i:93;s:99:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-pagination/editor-rtl.min.css\";i:94;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-pagination/editor.css\";i:95;s:95:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-pagination/editor.min.css\";i:96;s:94:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-pagination/style-rtl.css\";i:97;s:98:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-pagination/style-rtl.min.css\";i:98;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-pagination/style.css\";i:99;s:94:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-pagination/style.min.css\";i:100;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-title/editor-rtl.css\";i:101;s:94:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-title/editor-rtl.min.css\";i:102;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-title/editor.css\";i:103;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments-title/editor.min.css\";i:104;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments/editor-rtl.css\";i:105;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments/editor-rtl.min.css\";i:106;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments/editor.css\";i:107;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments/editor.min.css\";i:108;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments/style-rtl.css\";i:109;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments/style-rtl.min.css\";i:110;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments/style.css\";i:111;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/comments/style.min.css\";i:112;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/cover/editor-rtl.css\";i:113;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/cover/editor-rtl.min.css\";i:114;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/cover/editor.css\";i:115;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/cover/editor.min.css\";i:116;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/cover/style-rtl.css\";i:117;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/cover/style-rtl.min.css\";i:118;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/cover/style.css\";i:119;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/cover/style.min.css\";i:120;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/details/editor-rtl.css\";i:121;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/details/editor-rtl.min.css\";i:122;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/details/editor.css\";i:123;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/details/editor.min.css\";i:124;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/details/style-rtl.css\";i:125;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/details/style-rtl.min.css\";i:126;s:78:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/details/style.css\";i:127;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/details/style.min.css\";i:128;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/embed/editor-rtl.css\";i:129;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/embed/editor-rtl.min.css\";i:130;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/embed/editor.css\";i:131;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/embed/editor.min.css\";i:132;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/embed/style-rtl.css\";i:133;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/embed/style-rtl.min.css\";i:134;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/embed/style.css\";i:135;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/embed/style.min.css\";i:136;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/embed/theme-rtl.css\";i:137;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/embed/theme-rtl.min.css\";i:138;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/embed/theme.css\";i:139;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/embed/theme.min.css\";i:140;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/file/editor-rtl.css\";i:141;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/file/editor-rtl.min.css\";i:142;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/file/editor.css\";i:143;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/file/editor.min.css\";i:144;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/file/style-rtl.css\";i:145;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/file/style-rtl.min.css\";i:146;s:75:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/file/style.css\";i:147;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/file/style.min.css\";i:148;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/footnotes/style-rtl.css\";i:149;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/footnotes/style-rtl.min.css\";i:150;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/footnotes/style.css\";i:151;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/footnotes/style.min.css\";i:152;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/freeform/editor-rtl.css\";i:153;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/freeform/editor-rtl.min.css\";i:154;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/freeform/editor.css\";i:155;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/freeform/editor.min.css\";i:156;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/gallery/editor-rtl.css\";i:157;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/gallery/editor-rtl.min.css\";i:158;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/gallery/editor.css\";i:159;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/gallery/editor.min.css\";i:160;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/gallery/style-rtl.css\";i:161;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/gallery/style-rtl.min.css\";i:162;s:78:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/gallery/style.css\";i:163;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/gallery/style.min.css\";i:164;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/gallery/theme-rtl.css\";i:165;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/gallery/theme-rtl.min.css\";i:166;s:78:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/gallery/theme.css\";i:167;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/gallery/theme.min.css\";i:168;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/group/editor-rtl.css\";i:169;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/group/editor-rtl.min.css\";i:170;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/group/editor.css\";i:171;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/group/editor.min.css\";i:172;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/group/style-rtl.css\";i:173;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/group/style-rtl.min.css\";i:174;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/group/style.css\";i:175;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/group/style.min.css\";i:176;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/group/theme-rtl.css\";i:177;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/group/theme-rtl.min.css\";i:178;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/group/theme.css\";i:179;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/group/theme.min.css\";i:180;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/heading/style-rtl.css\";i:181;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/heading/style-rtl.min.css\";i:182;s:78:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/heading/style.css\";i:183;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/heading/style.min.css\";i:184;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/html/editor-rtl.css\";i:185;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/html/editor-rtl.min.css\";i:186;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/html/editor.css\";i:187;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/html/editor.min.css\";i:188;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/image/editor-rtl.css\";i:189;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/image/editor-rtl.min.css\";i:190;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/image/editor.css\";i:191;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/image/editor.min.css\";i:192;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/image/style-rtl.css\";i:193;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/image/style-rtl.min.css\";i:194;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/image/style.css\";i:195;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/image/style.min.css\";i:196;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/image/theme-rtl.css\";i:197;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/image/theme-rtl.min.css\";i:198;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/image/theme.css\";i:199;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/image/theme.min.css\";i:200;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/latest-comments/style-rtl.css\";i:201;s:94:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/latest-comments/style-rtl.min.css\";i:202;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/latest-comments/style.css\";i:203;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/latest-comments/style.min.css\";i:204;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/latest-posts/editor-rtl.css\";i:205;s:92:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/latest-posts/editor-rtl.min.css\";i:206;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/latest-posts/editor.css\";i:207;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/latest-posts/editor.min.css\";i:208;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/latest-posts/style-rtl.css\";i:209;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/latest-posts/style-rtl.min.css\";i:210;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/latest-posts/style.css\";i:211;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/latest-posts/style.min.css\";i:212;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/list/style-rtl.css\";i:213;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/list/style-rtl.min.css\";i:214;s:75:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/list/style.css\";i:215;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/list/style.min.css\";i:216;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/media-text/editor-rtl.css\";i:217;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/media-text/editor-rtl.min.css\";i:218;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/media-text/editor.css\";i:219;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/media-text/editor.min.css\";i:220;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/media-text/style-rtl.css\";i:221;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/media-text/style-rtl.min.css\";i:222;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/media-text/style.css\";i:223;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/media-text/style.min.css\";i:224;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/more/editor-rtl.css\";i:225;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/more/editor-rtl.min.css\";i:226;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/more/editor.css\";i:227;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/more/editor.min.css\";i:228;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation-link/editor-rtl.css\";i:229;s:95:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation-link/editor-rtl.min.css\";i:230;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation-link/editor.css\";i:231;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation-link/editor.min.css\";i:232;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation-link/style-rtl.css\";i:233;s:94:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation-link/style-rtl.min.css\";i:234;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation-link/style.css\";i:235;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation-link/style.min.css\";i:236;s:94:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation-submenu/editor-rtl.css\";i:237;s:98:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation-submenu/editor-rtl.min.css\";i:238;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation-submenu/editor.css\";i:239;s:94:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation-submenu/editor.min.css\";i:240;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation/editor-rtl.css\";i:241;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation/editor-rtl.min.css\";i:242;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation/editor.css\";i:243;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation/editor.min.css\";i:244;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation/style-rtl.css\";i:245;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation/style-rtl.min.css\";i:246;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation/style.css\";i:247;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/navigation/style.min.css\";i:248;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/nextpage/editor-rtl.css\";i:249;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/nextpage/editor-rtl.min.css\";i:250;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/nextpage/editor.css\";i:251;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/nextpage/editor.min.css\";i:252;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/page-list/editor-rtl.css\";i:253;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/page-list/editor-rtl.min.css\";i:254;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/page-list/editor.css\";i:255;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/page-list/editor.min.css\";i:256;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/page-list/style-rtl.css\";i:257;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/page-list/style-rtl.min.css\";i:258;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/page-list/style.css\";i:259;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/page-list/style.min.css\";i:260;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/paragraph/editor-rtl.css\";i:261;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/paragraph/editor-rtl.min.css\";i:262;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/paragraph/editor.css\";i:263;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/paragraph/editor.min.css\";i:264;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/paragraph/style-rtl.css\";i:265;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/paragraph/style-rtl.min.css\";i:266;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/paragraph/style.css\";i:267;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/paragraph/style.min.css\";i:268;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-author/style-rtl.css\";i:269;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-author/style-rtl.min.css\";i:270;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-author/style.css\";i:271;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-author/style.min.css\";i:272;s:94:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-comments-form/editor-rtl.css\";i:273;s:98:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-comments-form/editor-rtl.min.css\";i:274;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-comments-form/editor.css\";i:275;s:94:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-comments-form/editor.min.css\";i:276;s:93:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-comments-form/style-rtl.css\";i:277;s:97:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-comments-form/style-rtl.min.css\";i:278;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-comments-form/style.css\";i:279;s:93:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-comments-form/style.min.css\";i:280;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-date/style-rtl.css\";i:281;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-date/style-rtl.min.css\";i:282;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-date/style.css\";i:283;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-date/style.min.css\";i:284;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-excerpt/editor-rtl.css\";i:285;s:92:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-excerpt/editor-rtl.min.css\";i:286;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-excerpt/editor.css\";i:287;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-excerpt/editor.min.css\";i:288;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-excerpt/style-rtl.css\";i:289;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-excerpt/style-rtl.min.css\";i:290;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-excerpt/style.css\";i:291;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-excerpt/style.min.css\";i:292;s:95:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-featured-image/editor-rtl.css\";i:293;s:99:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-featured-image/editor-rtl.min.css\";i:294;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-featured-image/editor.css\";i:295;s:95:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-featured-image/editor.min.css\";i:296;s:94:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-featured-image/style-rtl.css\";i:297;s:98:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-featured-image/style-rtl.min.css\";i:298;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-featured-image/style.css\";i:299;s:94:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-featured-image/style.min.css\";i:300;s:95:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-navigation-link/style-rtl.css\";i:301;s:99:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-navigation-link/style-rtl.min.css\";i:302;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-navigation-link/style.css\";i:303;s:95:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-navigation-link/style.min.css\";i:304;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-template/editor-rtl.css\";i:305;s:93:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-template/editor-rtl.min.css\";i:306;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-template/editor.css\";i:307;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-template/editor.min.css\";i:308;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-template/style-rtl.css\";i:309;s:92:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-template/style-rtl.min.css\";i:310;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-template/style.css\";i:311;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-template/style.min.css\";i:312;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-terms/style-rtl.css\";i:313;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-terms/style-rtl.min.css\";i:314;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-terms/style.css\";i:315;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-terms/style.min.css\";i:316;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-title/style-rtl.css\";i:317;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-title/style-rtl.min.css\";i:318;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-title/style.css\";i:319;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/post-title/style.min.css\";i:320;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/preformatted/style-rtl.css\";i:321;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/preformatted/style-rtl.min.css\";i:322;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/preformatted/style.css\";i:323;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/preformatted/style.min.css\";i:324;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/pullquote/editor-rtl.css\";i:325;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/pullquote/editor-rtl.min.css\";i:326;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/pullquote/editor.css\";i:327;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/pullquote/editor.min.css\";i:328;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/pullquote/style-rtl.css\";i:329;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/pullquote/style-rtl.min.css\";i:330;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/pullquote/style.css\";i:331;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/pullquote/style.min.css\";i:332;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/pullquote/theme-rtl.css\";i:333;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/pullquote/theme-rtl.min.css\";i:334;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/pullquote/theme.css\";i:335;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/pullquote/theme.min.css\";i:336;s:100:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-pagination-numbers/editor-rtl.css\";i:337;s:104:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css\";i:338;s:96:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-pagination-numbers/editor.css\";i:339;s:100:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-pagination-numbers/editor.min.css\";i:340;s:92:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-pagination/editor-rtl.css\";i:341;s:96:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-pagination/editor-rtl.min.css\";i:342;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-pagination/editor.css\";i:343;s:92:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-pagination/editor.min.css\";i:344;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-pagination/style-rtl.css\";i:345;s:95:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-pagination/style-rtl.min.css\";i:346;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-pagination/style.css\";i:347;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-pagination/style.min.css\";i:348;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-title/style-rtl.css\";i:349;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-title/style-rtl.min.css\";i:350;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-title/style.css\";i:351;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query-title/style.min.css\";i:352;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query/editor-rtl.css\";i:353;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query/editor-rtl.min.css\";i:354;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query/editor.css\";i:355;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/query/editor.min.css\";i:356;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/quote/style-rtl.css\";i:357;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/quote/style-rtl.min.css\";i:358;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/quote/style.css\";i:359;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/quote/style.min.css\";i:360;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/quote/theme-rtl.css\";i:361;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/quote/theme-rtl.min.css\";i:362;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/quote/theme.css\";i:363;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/quote/theme.min.css\";i:364;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/read-more/style-rtl.css\";i:365;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/read-more/style-rtl.min.css\";i:366;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/read-more/style.css\";i:367;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/read-more/style.min.css\";i:368;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/rss/editor-rtl.css\";i:369;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/rss/editor-rtl.min.css\";i:370;s:75:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/rss/editor.css\";i:371;s:79:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/rss/editor.min.css\";i:372;s:78:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/rss/style-rtl.css\";i:373;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/rss/style-rtl.min.css\";i:374;s:74:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/rss/style.css\";i:375;s:78:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/rss/style.min.css\";i:376;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/search/editor-rtl.css\";i:377;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/search/editor-rtl.min.css\";i:378;s:78:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/search/editor.css\";i:379;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/search/editor.min.css\";i:380;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/search/style-rtl.css\";i:381;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/search/style-rtl.min.css\";i:382;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/search/style.css\";i:383;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/search/style.min.css\";i:384;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/search/theme-rtl.css\";i:385;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/search/theme-rtl.min.css\";i:386;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/search/theme.css\";i:387;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/search/theme.min.css\";i:388;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/separator/editor-rtl.css\";i:389;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/separator/editor-rtl.min.css\";i:390;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/separator/editor.css\";i:391;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/separator/editor.min.css\";i:392;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/separator/style-rtl.css\";i:393;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/separator/style-rtl.min.css\";i:394;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/separator/style.css\";i:395;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/separator/style.min.css\";i:396;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/separator/theme-rtl.css\";i:397;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/separator/theme-rtl.min.css\";i:398;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/separator/theme.css\";i:399;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/separator/theme.min.css\";i:400;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/shortcode/editor-rtl.css\";i:401;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/shortcode/editor-rtl.min.css\";i:402;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/shortcode/editor.css\";i:403;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/shortcode/editor.min.css\";i:404;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-logo/editor-rtl.css\";i:405;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-logo/editor-rtl.min.css\";i:406;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-logo/editor.css\";i:407;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-logo/editor.min.css\";i:408;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-logo/style-rtl.css\";i:409;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-logo/style-rtl.min.css\";i:410;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-logo/style.css\";i:411;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-logo/style.min.css\";i:412;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-tagline/editor-rtl.css\";i:413;s:92:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-tagline/editor-rtl.min.css\";i:414;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-tagline/editor.css\";i:415;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-tagline/editor.min.css\";i:416;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-title/editor-rtl.css\";i:417;s:90:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-title/editor-rtl.min.css\";i:418;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-title/editor.css\";i:419;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-title/editor.min.css\";i:420;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-title/style-rtl.css\";i:421;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-title/style-rtl.min.css\";i:422;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-title/style.css\";i:423;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/site-title/style.min.css\";i:424;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/social-link/editor-rtl.css\";i:425;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/social-link/editor-rtl.min.css\";i:426;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/social-link/editor.css\";i:427;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/social-link/editor.min.css\";i:428;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/social-links/editor-rtl.css\";i:429;s:92:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/social-links/editor-rtl.min.css\";i:430;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/social-links/editor.css\";i:431;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/social-links/editor.min.css\";i:432;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/social-links/style-rtl.css\";i:433;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/social-links/style-rtl.min.css\";i:434;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/social-links/style.css\";i:435;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/social-links/style.min.css\";i:436;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/spacer/editor-rtl.css\";i:437;s:86:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/spacer/editor-rtl.min.css\";i:438;s:78:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/spacer/editor.css\";i:439;s:82:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/spacer/editor.min.css\";i:440;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/spacer/style-rtl.css\";i:441;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/spacer/style-rtl.min.css\";i:442;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/spacer/style.css\";i:443;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/spacer/style.min.css\";i:444;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/table/editor-rtl.css\";i:445;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/table/editor-rtl.min.css\";i:446;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/table/editor.css\";i:447;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/table/editor.min.css\";i:448;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/table/style-rtl.css\";i:449;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/table/style-rtl.min.css\";i:450;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/table/style.css\";i:451;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/table/style.min.css\";i:452;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/table/theme-rtl.css\";i:453;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/table/theme-rtl.min.css\";i:454;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/table/theme.css\";i:455;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/table/theme.min.css\";i:456;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/tag-cloud/style-rtl.css\";i:457;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/tag-cloud/style-rtl.min.css\";i:458;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/tag-cloud/style.css\";i:459;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/tag-cloud/style.min.css\";i:460;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/template-part/editor-rtl.css\";i:461;s:93:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/template-part/editor-rtl.min.css\";i:462;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/template-part/editor.css\";i:463;s:89:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/template-part/editor.min.css\";i:464;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/template-part/theme-rtl.css\";i:465;s:92:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/template-part/theme-rtl.min.css\";i:466;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/template-part/theme.css\";i:467;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/template-part/theme.min.css\";i:468;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/term-description/style-rtl.css\";i:469;s:95:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/term-description/style-rtl.min.css\";i:470;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/term-description/style.css\";i:471;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/term-description/style.min.css\";i:472;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/text-columns/editor-rtl.css\";i:473;s:92:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/text-columns/editor-rtl.min.css\";i:474;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/text-columns/editor.css\";i:475;s:88:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/text-columns/editor.min.css\";i:476;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/text-columns/style-rtl.css\";i:477;s:91:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/text-columns/style-rtl.min.css\";i:478;s:83:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/text-columns/style.css\";i:479;s:87:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/text-columns/style.min.css\";i:480;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/verse/style-rtl.css\";i:481;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/verse/style-rtl.min.css\";i:482;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/verse/style.css\";i:483;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/verse/style.min.css\";i:484;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/video/editor-rtl.css\";i:485;s:85:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/video/editor-rtl.min.css\";i:486;s:77:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/video/editor.css\";i:487;s:81:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/video/editor.min.css\";i:488;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/video/style-rtl.css\";i:489;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/video/style-rtl.min.css\";i:490;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/video/style.css\";i:491;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/video/style.min.css\";i:492;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/video/theme-rtl.css\";i:493;s:84:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/video/theme-rtl.min.css\";i:494;s:76:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/video/theme.css\";i:495;s:80:\"/storage/v11800/salandingpage/public_html/wp-includes/blocks/video/theme.min.css\";}','yes'),(121,'_transient_doing_cron','1719522280.4974648952484130859375','yes'),(129,'ai1wm_secret_key','WcwIlhvKmfJW','yes'),(130,'wp_cli_login','{\"endpoint\":\"b10df175\",\"version\":\"^1.2\"}','yes'),(134,'ai1wmue_plugin_key','1bebc005-bc23-4932-8b3f-1b4b72ee066a','yes'),(135,'_site_transient_timeout_browser_0a264a5519a9e1055915d67c10c5115b','1692164001','no'),(136,'_site_transient_browser_0a264a5519a9e1055915d67c10c5115b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"115.0.0.0\";s:8:\"platform\";s:0:\"\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(137,'_site_transient_timeout_php_check_2f5acf219326a8bc5331ee302b9812f4','1692164002','no'),(138,'_site_transient_php_check_2f5acf219326a8bc5331ee302b9812f4','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(139,'can_compress_scripts','0','yes'),(140,'_site_transient_timeout_community-events-b6e383d91fc9e0c92f1a3cc5fa193dbb','1691687298','no'),(141,'_site_transient_community-events-b6e383d91fc9e0c92f1a3cc5fa193dbb','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"172.69.179.0\";}s:6:\"events\";a:0:{}}','no'),(158,'_site_transient_ai1wm_last_check_for_updates','1691648554','no'),(159,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-unlimited-extension\";a:13:{s:4:\"name\";s:19:\"Unlimited Extension\";s:4:\"slug\";s:19:\"unlimited-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/unlimited-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"2.52\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:259:\"<ul class=\"description\"><li>Remove the import limit of 512MB</li><li>Lifetime license with lifetime updates</li><li>Use on any number of websites that you own</li><li>Unlimited Extension included</li><li>WP CLI commands</li><li>Premium support</li></ul><br />\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/unlimited-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/unlimited-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/unlimited-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40189;}}','yes'),(160,'elementor_active_kit','5','yes'),(161,'elementor_font_display','swap','yes'),(164,'recently_activated','a:3:{s:36:\"contact-form-7/wp-contact-form-7.php\";i:1691652950;s:21:\"wpstream/wpstream.php\";i:1691652922;s:9:\"hello.php\";i:1691559790;}','yes'),(165,'elementor_version','3.15.1','yes'),(166,'elementor_install_history','a:1:{s:6:\"3.15.1\";i:1691559331;}','yes'),(167,'elementor_events_db_version','1.0.0','no'),(168,'elementor_onboarded','1','yes'),(169,'_elementor_installed_time','1691559372','yes'),(170,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:28:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:11:\"Link in Bio\";i:15;s:9:\"portfolio\";i:16;s:7:\"pricing\";i:17;s:15:\"product archive\";i:18;s:5:\"Quote\";i:19;s:15:\"Service Details\";i:20;s:8:\"services\";i:21;s:11:\"single page\";i:22;s:11:\"single post\";i:23;s:14:\"single product\";i:24;s:5:\"stats\";i:25;s:9:\"subscribe\";i:26;s:4:\"team\";i:27;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:28:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:11:\"Link in Bio\";i:15;s:9:\"portfolio\";i:16;s:7:\"pricing\";i:17;s:15:\"product archive\";i:18;s:5:\"Quote\";i:19;s:15:\"Service Details\";i:20;s:8:\"services\";i:21;s:11:\"single page\";i:22;s:11:\"single post\";i:23;s:14:\"single product\";i:24;s:5:\"stats\";i:25;s:9:\"subscribe\";i:26;s:4:\"team\";i:27;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:19:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:19:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:19:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:19:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:19:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:19:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:19:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:19:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:19:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:19:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:19:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:19:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:19:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:19:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:19:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:19:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:19:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:19:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:19:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:19:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:19:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:19:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:19:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:19:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:19:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:19:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:19:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:19:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:19:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:19:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:19:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:19:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:19:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:19:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:19:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:19:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:19:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:19:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:19:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:19:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:19:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:19:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:19:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:19:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:19:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:19:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:19:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:19:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:19:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:19:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:19:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:19:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:19:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:19:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:19:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:19:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:19:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:19:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:19:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:19:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:19:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:19:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:19:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:19:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:19:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:19:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:19:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:19:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:19:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:19:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:19:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:19:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:19:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:19:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:19:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:19:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:19:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:19:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:19:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:19:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:19:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:19:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:19:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:19:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:19:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:19:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:19:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:19:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:19:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:19:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:19:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:19:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:19:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:19:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:19:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:19:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:19:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:19:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:19:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:19:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:19:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:19:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:19:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:19:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:19:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:19:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:19:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:19:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:19:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:19:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:19:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:19:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:19:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:19:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:19:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:19:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:19:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:19:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:19:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:19:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:19:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:19:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:19:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:19:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:19:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:19:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:19:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:19:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:19:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:19:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:19:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:19:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:19:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:19:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:19:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:19:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:19:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:19:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:19:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:19:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:19:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:19:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:19:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:19:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:19:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:19:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:19:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:19:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:19:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:19:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:19:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:19:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:19:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:19:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:19:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:19:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:19:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:19:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:19:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:19:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:19:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:19:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:19:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:19:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:19:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:19:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:19:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:19:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:19:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:19:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:19:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:19:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:19:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:19:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:19:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:19:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:19:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:19:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:19:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:19:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:19:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:19:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:19:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:19:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:19:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:19:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:19:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:19:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:19:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:19:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:19:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:19:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:19:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:19:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:19:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:19:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:19:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:19:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:19:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:19:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:19:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:19:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:19:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:19:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:19:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:19:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:19:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:19:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:19:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:19:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:19:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:19:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:19:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:19:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:19:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:19:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:19:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:19:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:19:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:19:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:19:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:19:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:19:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:19:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:19:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:19:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:19:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:19:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:19:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:19:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:19:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:19:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:19:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:19:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:19:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:19:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:19:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:19:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:19:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:19:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:19:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:19:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:19:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:19:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:19:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:19:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:19:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:19:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:19:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:19:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:19:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:19:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:19:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:19:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:19:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:19:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:19:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:19:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:19:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:19:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:19:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:19:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:19:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:19:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:19:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:19:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:19:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:19:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:19:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:19:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:19:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:19:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:19:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:19:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:19:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:19:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:19:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:19:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:19:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:19:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:19:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:19:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:19:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:19:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:19:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:19:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:19:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:19:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:19:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:19:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:19:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:19:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:19:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:19:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:19:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:19:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:19:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:19:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:19:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:19:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:19:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:19:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:19:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:19:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:19:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:19:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:19:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:19:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:19:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:19:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:19:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:19:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:19:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:19:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:19:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:19:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:19:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:19:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:19:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:19:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:19:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:19:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:19:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:19:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:19:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:19:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:19:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:19:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:19:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:19:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:19:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:19:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:19:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:19:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:19:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:19:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:19:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:19:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:19:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:19:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:19:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:19:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:19:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:19:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:19:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:19:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:19:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:19:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:19:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:19:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:19:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:19:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:19:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:19:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:19:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:19:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:19:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:19:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:19:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:19:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:19:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:19:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:19:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:19:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:19:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:19:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:19:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:19:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:19:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:19:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:19:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:19:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:19:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:19:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:19:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:19:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:19:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:19:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:19:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:19:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:19:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:19:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:19:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:19:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:19:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:19:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:19:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:19:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:19:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:19:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:19:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:19:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:19:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:19:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:19:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:19:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:19:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:19:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:19:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:19:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:19:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:19:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:19:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:19:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:19:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:19:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:19:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:19:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:19:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:19:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:19:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:19:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:19:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:19:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:19:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:19:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:19:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:19:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:19:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:19:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:19:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:19:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:19:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:19:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:19:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:19:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:19:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:19:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:19:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:19:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:19:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:19:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:19:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:19:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:19:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:19:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:19:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:19:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:19:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:19:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:19:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:19:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:19:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:19:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:19:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:19:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:19:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:19:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:19:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:19:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:19:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:19:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:19:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:19:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:19:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:19:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:19:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:19:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:19:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:19:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:19:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:19:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:19:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:19:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:19:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:19:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:19:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:19:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:19:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:19:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:19:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:19:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:19:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:19:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:19:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:19:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:19:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:19:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:19:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:19:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:19:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:19:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:19:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:19:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:19:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:19:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:19:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:19:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:19:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:19:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:19:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:19:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:19:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:19:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:19:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:19:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:19:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:19:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:19:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:19:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:19:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:19:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:19:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:19:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:19:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:19:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:19:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:19:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:19:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:19:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:19:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:19:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:19:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:19:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:19:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:19:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:19:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:19:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:19:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:19:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:19:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:19:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:19:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:19:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:19:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:19:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:19:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:19:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:19:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:19:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:19:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:19:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:19:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:19:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:19:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:19:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:19:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:19:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:19:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:19:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:19:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:19:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:19:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:19:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:19:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:19:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:19:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:19:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:19:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:19:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:19:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:19:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:19:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:19:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:19:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:19:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:19:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:19:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:19:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:19:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:19:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:19:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:19:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:19:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:19:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:19:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:19:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:19:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:19:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:19:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:19:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:19:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:19:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:19:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:19:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:19:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:19:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:19:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:19:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:19:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:19:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:19:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:19:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:19:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:19:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:19:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:19:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:19:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:19:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:19:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:19:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:19:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:19:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:19:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:19:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:19:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:19:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:19:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:19:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:19:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:19:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:19:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:19:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:19:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:19:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:19:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:19:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:19:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:19:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:19:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:19:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:19:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:19:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:19:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:19:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:19:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:19:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:19:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:19:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:19:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:19:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:19:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:19:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:19:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:19:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:19:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:19:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:19:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:19:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:19:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:19:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:19:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:19:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:19:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:19:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:19:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:19:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:19:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:19:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:19:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:19:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:19:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:19:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:19:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:19:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:19:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:19:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:19:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:19:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:19:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:19:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:19:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:19:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:19:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:19:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:19:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:19:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:19:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:19:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:19:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:19:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:19:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:19:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:19:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:19:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:19:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:19:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:19:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:19:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:19:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:19:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:19:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:19:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:19:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:19:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:19:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:19:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:19:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:19:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:19:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:19:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:19:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:19:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:19:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:19:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:19:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:19:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:19:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:19:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:19:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:19:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:19:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:19:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:19:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:19:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:19:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:19:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:19:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:19:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:19:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:19:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:19:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:19:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:19:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:19:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:19:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:19:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:19:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:19:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:19:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:19:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:19:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:19:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:19:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:19:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:19:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:19:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:19:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:19:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:19:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:19:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:19:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:19:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:19:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:19:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:19:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:19:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:19:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:19:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:19:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:19:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:19:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:19:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:19:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:19:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:19:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:19:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:19:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:19:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:19:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:19:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:19:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:19:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:19:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:19:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:19:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:19:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:19:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:19:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:19:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:19:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:19:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:19:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:19:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:19:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:19:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:19:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:19:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:19:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:19:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:19:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:19:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:19:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:19:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:19:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:19:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:19:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:19:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:19:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:19:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:19:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:19:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:19:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:19:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:19:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:19:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:19:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:19:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:19:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:19:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:19:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:19:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:19:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:19:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:19:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:19:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:19:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:19:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:19:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:19:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:19:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:19:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:19:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:19:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:19:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:19:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:19:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:19:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:19:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:19:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:19:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:19:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:19:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:19:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:19:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:19:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:19:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:19:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:19:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:19:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:19:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:19:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:19:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:19:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:19:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:19:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:19:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:19:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:19:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:19:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:19:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:19:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:19:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(171,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:73:\"AI 0.4 Release: Context Boosts A 58% Content Uplift for Improved Workflow\";s:7:\"excerpt\";s:163:\"Hitting creative walls & code roadblocks? Elementor AI\'s update creates a future where AI writes captivating copy with a 58% approval boost... what else can it do?\";s:7:\"created\";i:1716217283;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:155:\"https://elementor.com/blog/elementor-ai-enhanced-workflow-and-high-quality-results/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.21: Loop Taxonomy Query for Listings, Performance Improvements, and More!\";s:7:\"excerpt\";s:160:\"Version 3.21 includes the ability to build listings for your categories and tags and significant performance improvements alongside an exciting new AI feature. \";s:7:\"created\";i:1714559068;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/elementor-321-taxonomy-query-performance-improvement/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:71:\"6 Best WordPress Image Optimization Plugins of 2024 (+Real Image Tests)\";s:7:\"excerpt\";s:116:\"Explore the top 6 WordPress image optimization plugins of 2024 for faster site speed and better SEO with real tests.\";s:7:\"created\";i:1712656602;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:126:\"https://elementor.com/blog/image-optimization-plugins/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(172,'_transient_timeout_elementor_remote_info_api_data_3.15.1','1691602573','no'),(173,'_transient_elementor_remote_info_api_data_3.15.1','a:4:{s:9:\"timestamp\";s:10:\"1691557331\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"6.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(180,'theme_mods_twentytwentythree','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1691559693;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'),(181,'current_theme','Hello Elementor','yes'),(182,'theme_mods_hello-elementor','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),(183,'theme_switched','','yes'),(184,'hello_theme_version','2.8.1','yes'),(185,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1719436510;s:7:\"checked\";a:4:{s:15:\"hello-elementor\";s:5:\"2.8.1\";s:16:\"twentytwentyfour\";s:3:\"1.1\";s:17:\"twentytwentythree\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.7\";}s:8:\"response\";a:1:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.1.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.1.0.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";}}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.1.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.4.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.7.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(186,'template_kit_import_version','1.0.14','yes'),(187,'template_kit_import_install_time','1691559777','yes'),(188,'hfe_plugin_is_activated','yes','yes'),(189,'_hfe_db_version','1.6.36','yes'),(190,'bsf_analytics_installed_time','1691559783','no'),(192,'elementskit-lite__banner_last_check','1691644089','yes'),(193,'elementskit-lite__banner_data','O:8:\"stdClass\":10:{s:8:\"10010506\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010506;s:5:\"title\";s:32:\"Wpmet Summer sale 2023 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010508\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010508;s:5:\"title\";s:31:\"Wpmet Summer sale 2023 own page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010418\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010418;s:5:\"title\";s:32:\"Wpmet Summer Ownpage Notice 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1685577600;s:3:\"end\";i:1686787200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:26:\"https://wpmet.com/birthday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:539:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Birthday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $221 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 45% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2023/06/notice.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10008094\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008094;s:5:\"title\";s:24:\"GetGenie Cross Promotion\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1678492800;s:3:\"end\";i:1688083200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:35:\"https://wpmet.com/getgenie-org-page\";s:11:\"button_text\";s:14:\"Get Yours Now!\";s:11:\"notice_body\";s:766:\"<h2>We are delighted to announce that <span style=\"color: #2471b1;\"><strong style=\"color: #2471b1; text-transform: uppercase; font-size: 14px;\">GetGenie AI is now available</strong></span>!</h2>\r\n<h4 style=\"font-size: 16px; margin-left: -2px;\"><b>Let&#039;s write your content 20x faster with AI. Also, Research </b><b>keywords</b><b>, A</b><b>nalyse your </b><b>competitors, head 2 Head analysis,  content writing with ai, and search engine ranking with NLP Keywords optimization—all within WordPress.</b> Additionally, <b>you can chat</b> with the GENIE AI about your needs.</h4>\r\n<span style=\"color: #dd0cd9;\">Join now and get <span style=\"font-weight: 400;\"><strong>1500 words for free every month</strong></span></span><span style=\"color: #dd0cd9;\">. </span>\";s:12:\"notice_image\";s:79:\"https://api.wpmet.com/auth/wp-content/uploads/2023/03/genie_compare_image_4.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:20:\"background: #e9fce5;\";s:10:\"unique_key\";s:20:\"getgenie-cross-promo\";}}s:8:\"10008085\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008085;s:5:\"title\";s:27:\"Wpmet Notice Dashboard 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:517:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet</span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10008083\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008083;s:5:\"title\";s:25:\"Wpmet Notice Ownpage 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:519:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet. </span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10007775\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007775;s:5:\"title\";s:17:\"August Flash Sale\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:7:\"plugins\";s:5:\"start\";i:1661385600;s:3:\"end\";i:1661904000;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:30:\"https://wpmet.com/flash/banner\";s:12:\"banner_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2022/08/InPlugin-Banner-4.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:76:\"background-color: #00003E; display: block; height: 60px; text-align: center;\";s:10:\"unique_key\";s:15:\"AugustFlashSale\";}}s:8:\"10007416\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007416;s:5:\"title\";s:28:\"Wpmet 4th of July Flash Sale\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1656806400;s:3:\"end\";i:1657065600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:603:\"ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and save 70% instantly! Happy 4th of July Flash Sale!!\r\n\r\n<a href=\"https://wpmet.com/4-july/notice\"><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Claim Your Discount →&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:1337857,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0,&quot;14&quot;:{&quot;1&quot;:2,&quot;2&quot;:1136076},&quot;16&quot;:10,&quot;17&quot;:1,&quot;21&quot;:1,&quot;23&quot;:1}\" data-sheets-hyperlink=\"https://wpmet.com/deals\">Claim Your Discount →</span></a>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2022/07/Notice.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:13:\"4thJulybanner\";}}s:8:\"10007174\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007174;s:5:\"title\";s:31:\"Wpmet Birthday Campaign Ownpage\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1653868800;s:3:\"end\";i:1655942400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:261:\"Wpmet\'s Birthday Sale is going on! Enjoy limited-time discounts of up to 50% on each of our PRO plugins — ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review. Hurry up!\r\n\r\n<a href=\"https://wpmet.com/notice/birthday-deal\">Get Your Discount →</a>\";s:12:\"notice_image\";s:76:\"https://api.wpmet.com/auth/wp-content/uploads/2022/05/InPlugin-Notice-50.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:14:\"birthdaybanner\";}}s:8:\"10007139\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007139;s:5:\"title\";s:31:\"Wpmet Summer Campaign Own Pages\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1650326400;s:3:\"end\";i:1651276800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:233:\"ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and save 70% instantly throughout this Summer Sale!\r\n\r\n<a href=\"https://wpmet.com/notice/summer-sale\">Get Your Discount →</a>\";s:12:\"notice_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2022/04/InPlugin-Notice-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:12:\"summerbanner\";}}}','yes'),(194,'elementskit-lite_install_date','2023-08-09 05:43:15','yes'),(197,'eael_setup_wizard','init','yes'),(198,'eael_save_settings','a:64:{s:9:\"post-grid\";i:1;s:13:\"post-timeline\";i:1;s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";i:1;s:13:\"facebook-feed\";i:1;s:19:\"advanced-data-table\";i:1;s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";i:1;s:14:\"contact-form-7\";i:1;s:7:\"weforms\";i:1;s:10:\"ninja-form\";i:1;s:9:\"formstack\";i:1;s:12:\"gravity-form\";i:1;s:12:\"caldera-form\";i:1;s:7:\"wpforms\";i:1;s:10:\"fluentform\";i:1;s:8:\"typeform\";i:1;s:24:\"betterdocs-category-grid\";i:1;s:23:\"betterdocs-category-box\";i:1;s:22:\"betterdocs-search-form\";i:1;s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";i:1;s:10:\"embedpress\";i:1;s:24:\"crowdfundly-organization\";i:1;s:24:\"crowdfundly-all-campaign\";i:1;s:27:\"crowdfundly-single-campaign\";i:1;s:12:\"woo-checkout\";i:1;s:8:\"woo-cart\";i:1;s:14:\"login-register\";i:1;s:18:\"woocommerce-review\";i:1;s:11:\"career-page\";i:1;s:19:\"woo-product-compare\";i:1;s:20:\"woo-product-carousel\";i:1;s:11:\"simple-menu\";i:1;s:19:\"woo-product-gallery\";i:1;s:18:\"interactive-circle\";i:1;s:14:\"better-payment\";i:1;s:11:\"nft-gallery\";i:1;s:16:\"business-reviews\";i:1;s:8:\"svg-draw\";i:1;s:9:\"promotion\";i:1;s:9:\"custom-js\";i:1;s:16:\"reading-progress\";i:1;s:16:\"table-of-content\";i:1;s:15:\"post-duplicator\";i:1;s:13:\"scroll-to-top\";i:1;s:12:\"wrapper-link\";i:1;}','yes'),(199,'wpdeveloper_plugins_data','a:1:{s:25:\"essential_adons_elementor\";a:3:{s:16:\"notice_will_show\";a:2:{s:6:\"opt_in\";i:1691888720;s:6:\"review\";i:1692234320;}s:4:\"time\";i:1691672720;s:7:\"version\";s:5:\"5.8.6\";}}','yes'),(200,'eael_version','5.9.24','yes'),(207,'eael_editor_updated_at','1691672442','yes'),(208,'eael_global_settings','a:1:{s:22:\"eael_ext_scroll_to_top\";a:0:{}}','yes'),(209,'_elementor_settings_update_time','1691563326','yes'),(210,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(211,'elementor_disable_color_schemes','yes','yes'),(212,'elementor_disable_typography_schemes','yes','yes'),(213,'elementor_allow_tracking','no','yes'),(214,'elementor_google_maps_api_key','','yes'),(215,'elementor_css_print_method','external','yes'),(216,'elementor_editor_break_lines','','yes'),(217,'elementor_unfiltered_files_upload','','yes'),(218,'elementor_google_font','1','yes'),(219,'elementor_load_fa4_shim','','yes'),(220,'elementor_meta_generator_tag','','yes'),(221,'elementor_experiment-e_font_icon_svg','default','yes'),(222,'elementor_experiment-container','default','yes'),(223,'elementor_experiment-container_grid','default','yes'),(224,'elementor_experiment-editor_v2','default','yes'),(225,'elementor_experiment-landing-pages','default','yes'),(226,'elementor_experiment-nested-elements','default','yes'),(227,'elementor_experiment-e_lazyload','default','yes'),(228,'elementor_experiment-e_global_styleguide','default','yes'),(229,'elementor_experiment-e_dom_optimization','default','yes'),(230,'elementor_experiment-e_optimized_assets_loading','default','yes'),(231,'elementor_experiment-e_optimized_css_loading','default','yes'),(232,'elementor_experiment-additional_custom_breakpoints','default','yes'),(233,'elementor_experiment-e_swiper_latest','default','yes'),(234,'elementor_experiment-hello-theme-header-footer','default','yes'),(239,'WPLANG','','yes'),(240,'new_admin_email','wp@dxpsites.com','yes'),(241,'bsf_analytics_optin','no','yes'),(251,'_transient_timeout_elementor_remote_templates_data_3.15.1','1691609580','no');
INSERT INTO `wp_options` VALUES (252,'_transient_elementor_remote_templates_data_3.15.1','a:823:{i:0;a:18:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:18:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:18:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:18:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:18:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:18:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:18:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:18:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:18:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:18:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:18:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:18:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:18:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:18:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:18:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:18:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:18:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:18:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:18:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:18:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:18:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:18:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:18:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:18:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:18:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:18:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:18:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:18:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:18:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:18:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:18:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:18:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:18:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:18:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:18:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:18:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:18:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:18:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:18:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:18:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:18:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:18:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:18:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:18:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:18:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:18:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:18:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:18:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:18:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:18:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:18:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:18:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:18:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:18:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:18:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:18:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:18:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:18:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:18:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:18:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:18:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:18:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:18:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:18:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:18:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:18:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:18:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:18:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:18:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:18:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:18:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:18:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:18:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:18:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:18:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:18:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:18:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:18:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:18:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:18:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:18:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:18:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:18:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:18:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:18:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:18:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:18:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:18:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:18:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:18:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:18:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:18:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:18:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:18:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:18:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:18:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:18:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:18:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:18:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:18:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:18:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:18:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:18:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:18:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:18:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:18:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:18:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:18:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:18:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:18:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:18:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:18:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:18:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:18:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:18:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:18:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:18:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:18:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:18:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:18:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:18:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:18:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:18:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:18:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:18:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:18:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:18:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:18:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:18:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:18:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:18:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:18:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:18:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:18:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:18:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:18:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:18:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:18:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:18:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:18:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:18:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:18:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:18:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:18:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:18:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:18:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:18:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:18:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:18:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:18:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:18:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:18:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:18:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:18:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:18:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:18:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:18:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:18:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:18:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:18:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:18:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:18:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:18:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:18:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:18:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:18:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:18:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:18:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:18:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:18:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:18:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:18:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:18:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:18:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:18:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:18:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:18:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:18:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:18:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:18:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:18:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:18:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:18:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:18:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:18:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:18:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:18:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:18:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:18:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:18:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:18:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:18:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:18:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:18:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:18:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:18:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:18:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:18:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:18:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:18:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:18:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:18:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:18:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:18:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:18:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:18:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:18:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:18:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:18:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:18:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:18:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:18:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:18:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:18:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:18:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:18:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:18:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:18:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:18:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:18:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:18:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:18:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:18:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:18:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:18:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:18:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:18:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:18:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:18:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:18:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:18:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:18:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:18:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:18:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:18:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:18:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:18:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:18:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:18:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:18:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:18:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:18:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:18:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:18:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:18:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:18:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:18:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:18:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:18:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:18:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:18:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:18:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:18:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:18:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:18:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:18:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:18:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:18:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:18:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:18:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:18:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:18:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:18:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:18:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:18:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:18:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:18:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:18:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:18:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:18:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:18:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:18:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:18:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:18:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:18:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:18:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:18:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:18:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:18:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:18:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:18:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:18:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:18:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:18:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:18:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:18:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:18:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:18:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:18:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:18:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:18:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:18:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:18:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:18:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:18:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:18:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:18:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:18:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:18:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:18:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:18:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:18:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:18:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:18:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:18:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:18:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:18:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:18:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:18:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:18:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:18:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:18:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:18:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:18:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:18:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:18:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:18:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:18:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:18:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:18:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:18:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:18:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:18:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:18:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:18:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:18:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:18:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:18:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:18:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:18:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:18:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:18:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:18:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:18:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:18:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:18:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:18:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:18:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:18:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:18:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:18:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:18:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:18:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:18:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:18:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:18:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:18:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:18:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:18:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:18:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:18:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:18:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:18:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:18:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:18:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:18:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:18:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:18:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:18:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:18:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:18:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:18:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:18:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:18:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:18:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:18:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:18:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:18:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:18:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:18:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:18:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:18:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:18:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:18:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:18:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:18:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:18:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:18:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:18:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:18:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:18:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:18:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:18:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:18:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:18:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:18:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:18:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:18:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:18:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:18:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:18:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:18:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:18:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:18:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:18:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:18:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:18:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:18:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:18:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:18:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:18:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:18:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:18:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:18:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:18:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:18:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:18:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:18:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:18:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:18:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:18:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:18:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:18:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:18:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:18:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:18:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:18:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:18:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:18:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:18:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:18:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:18:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:18:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:18:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:18:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:18:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:18:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:18:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:18:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:18:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:18:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:18:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:18:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:18:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:18:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:18:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:18:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:18:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:18:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:18:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:18:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:18:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:18:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:18:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:18:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:18:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:18:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:18:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:18:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:18:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:18:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:18:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:18:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:18:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:18:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:18:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:18:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:18:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:18:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:18:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:18:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:18:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:18:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:18:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:18:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:18:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:18:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:18:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:18:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:18:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:18:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:18:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:18:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:18:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:18:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:18:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:18:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:18:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:18:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:18:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:18:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:18:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:18:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:18:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:18:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:18:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:18:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:18:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:18:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:18:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:18:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:18:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:18:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:18:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:18:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:18:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:18:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:18:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:18:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:18:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:18:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:18:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:18:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:18:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:18:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:18:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:18:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:18:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:18:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:18:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:18:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:18:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:18:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:18:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:18:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:18:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:18:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:18:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:18:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:18:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:18:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:18:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:18:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:18:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:18:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:18:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:18:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:18:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:18:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:18:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:18:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:18:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:18:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:18:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:18:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:18:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:18:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:18:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:18:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:18:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:18:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:18:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:18:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:18:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:18:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:18:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:18:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:18:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:18:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:18:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:18:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:18:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:18:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:18:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:18:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:18:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:18:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:18:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:18:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:18:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:18:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:18:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:18:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:18:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:18:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:18:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:18:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:18:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:18:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:18:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:18:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:18:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:18:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:18:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:18:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:18:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:18:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:18:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:18:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:18:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:18:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:18:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:18:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:18:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:18:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:18:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:18:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:18:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:18:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:18:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:18:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:18:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:18:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:18:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:18:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:18:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:18:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:18:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:18:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:18:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:18:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:18:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:18:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:18:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:18:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:18:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:18:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:18:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:18:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:18:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:18:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:18:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:18:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:18:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:18:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:18:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:18:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:18:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:18:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:18:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:18:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:18:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:18:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:18:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:18:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:18:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:18:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:18:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:18:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:18:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:18:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:18:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:18:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:18:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:18:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:18:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:18:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:18:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:18:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:18:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:18:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:18:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:18:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:18:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:18:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:18:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:18:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:18:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:18:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:18:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:18:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:18:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:18:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:18:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:18:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:18:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:18:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:18:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:18:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:18:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:18:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:18:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:18:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:18:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:18:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:18:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:18:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:18:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:18:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:18:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:18:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:18:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:18:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:18:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:18:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:18:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:18:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:18:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:18:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:18:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:18:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:18:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:18:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:18:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:18:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:18:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:18:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:18:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:18:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:18:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:18:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:18:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:18:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:18:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:18:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:18:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:18:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:18:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:18:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:18:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:18:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:18:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:18:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:18:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:18:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:18:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:561;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:18:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:562;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:18:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:563;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:18:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:18:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:18:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:18:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:18:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:18:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:18:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:18:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:18:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:18:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:18:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:18:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:18:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:18:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:18:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:18:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:18:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:18:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:18:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:18:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:18:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:18:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:18:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:18:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:18:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:18:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:18:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:18:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:18:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:18:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:18:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:18:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:18:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:18:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:18:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:18:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:18:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:18:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:18:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:18:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:18:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:18:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:18:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:606;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:18:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:607;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:18:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:608;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:18:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:609;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:18:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:18:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:756;a:18:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:18:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:18:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:18:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:18:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:18:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:18:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:18:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:18:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:18:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:18:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:18:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:18:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:18:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:18:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:18:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:18:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:18:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:18:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:18:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:18:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:18:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:18:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:18:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:18:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:18:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:18:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:18:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:18:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:18:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:18:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:18:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:18:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:18:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:18:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:18:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:18:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:18:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:18:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:18:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:18:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:18:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:18:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:18:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:18:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:18:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:18:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:18:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:18:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:18:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:18:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:18:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:18:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:18:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:18:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:18:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:18:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:18:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:18:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:18:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:18:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:18:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:18:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:18:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:18:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:18:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:18:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}','no'),(253,'_transient_timeout_header-footer-elementor-rating','1692862454','no'),(254,'_transient_header-footer-elementor-rating','delayed-notice','no'),(263,'elementor_1_elementor_updater_batch_1f1e99ada66d802bf9cb11e93d59','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}','no'),(264,'elementor_log','a:1:{s:32:\"89b6b80b3461e477dd09766b8e388030\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-10 10:38:07\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.15.1\";s:2:\"to\";s:6:\"3.15.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-10 10:38:07\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.15.1\";s:2:\"to\";s:6:\"3.15.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}}','no'),(265,'elementskit-lite__stories_last_check','1691644088','yes'),(266,'elementskit-lite__stories_data','O:8:\"stdClass\":10:{s:8:\"10010504\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010504;s:5:\"title\";s:22:\"Wpmet Summer Sale 2023\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:23:\"https://wpmet.com/Sum23\";s:11:\"story_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/summer_sale_story.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010500\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010500;s:5:\"title\";s:43:\"Benefits of Ai Chatbot for Customer Service\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:64:\"https://getgenie.ai/benefits-of-ai-chatbot-for-customer-service/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010499\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010499;s:5:\"title\";s:61:\"Ai Generated Content Plagiarism Detection: Step-by-Step Guide\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:62:\"https://getgenie.ai/ai-generated-content-plagiarism-detection/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010498\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010498;s:5:\"title\";s:65:\"Multilingual Content Creation: Breaking Language Barriers with Ai\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:58:\"https://getgenie.ai/multilingual-content-creation-with-ai/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010497\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010497;s:5:\"title\";s:56:\"How to Add Dual Button in WordPress (Step-By-Step-Guide)\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:47:\"https://wpmet.com/add-dual-button-in-wordpress/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010496\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010496;s:5:\"title\";s:57:\"How to Show a Post List in WordPress: Your Ultimate Guide\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:75:\"https://wpmet.com/how-to-show-a-post-list-in-wordpress-your-ultimate-guide/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010462\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010462;s:5:\"title\";s:57:\"How To Show Dribbble Feed On Your Website In 7 Easy Steps\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:44:\"https://wpmet.com/how-to-show-dribbble-feed/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010461\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010461;s:5:\"title\";s:44:\"How to Add Motion Text to WordPress Websites\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:55:\"https://wpmet.com/add-motion-text-to-wordpress-website/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010460\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010460;s:5:\"title\";s:59:\"How to Create a Particle Effect in WordPress [The Easy Way]\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:63:\"https://wpmet.com/how-to-create-a-particle-effect-in-wordpress/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010459\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010459;s:5:\"title\";s:49:\"What Are The Common Copywriting Mistakes to Avoid\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:57:\"https://getgenie.ai/common-copywriting-mistakes-to-avoid/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}}','yes'),(267,'_transient_timeout_elementor_remote_info_api_data_3.15.2','1691687291','no'),(268,'_transient_elementor_remote_info_api_data_3.15.2','a:4:{s:9:\"timestamp\";s:10:\"1691643830\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"6.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(269,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1691687299','no'),(270,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 23:38:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.4-alpha-56379\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 6.3 “Lionel”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2023/08/lionel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 20:03:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15718\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:196:\"WordPress 6.3 \"Lionel\" is here! Named after Lionel Hampton, the prolific jazz musician and bandleader, this release was made possible by over 650 contributors. Download WordPress 6.3 Lionel today.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matias Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:70083:\"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" fetchpriority=\"high\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-15794\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=2048%2C1365&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Say hello to WordPress 6.3 “Lionel,” named after <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, the celebrated American jazz artist. A prolific jazz vibraphonist, pianist, and percussionist, Hampton gained notoriety working in harmony with greats from <a href=\"https://en.wikipedia.org/wiki/Charles_Mingus\">Charles Mingus</a> to <a href=\"https://en.wikipedia.org/wiki/Quincy_Jones\">Quincy Jones</a> and as bandleader of the eponymous Lionel Hampton Orchestra. His artistry and charitable work have been recognized with a Grammy, a star on the Hollywood Walk of Fame, and the National Medal of Arts.</p>\n\n\n\n<p>Be sure to turn up the volume of the <a href=\"https://www.youtube.com/channel/UCpfWWFslWSapwL_q16AboSg/featured\">musical stylings</a> of Lionel Hampton as you discover all “Lionel” has to offer.</p>\n\n\n\n<p>With “Lionel” you can create beautiful and compelling websites more efficiently than ever. Whether you want to build an entire site without coding or are a developer looking to customize every detail, WordPress 6.3 has something to pique your interest. As you unpack and explore this latest release, you will discover updated functions and navigation designed to help you work and create with less effort, design tools that give you more control over layout, and added functionality enriching the site-building experience.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">&#8220;Lionel&#8221; marks a major chapter in the evolution of WordPress as a tool for expression. It’s the culmination of years of work from hundreds of contributors, bringing a more powerful and cohesive editing experience for crafting websites with blocks. It continues the quest of making web publishing approachable for everyone—so it’s also just a new beginning!</p>\n<cite>Matías Ventura, WordPress 6.3 Release Lead</cite></blockquote>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.3.zip\">Download WordPress 6.3 &#8220;Lionel&#8221; today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<p>This momentous release opens new possibilities for the creative expression of designers, creators, and builders. Powerful tools and refined controls give users confidence and allow them to easily manage their sites.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Do everything in the Site Editor</h3>\n\n\n\n<p>WordPress 6.3 brings your content, templates, and patterns together in the Site Editor for the first time. Add pages, browse style variations, create synced patterns, and enjoy fine-tuned control over navigation menus. Spend less time switching across different site areas—so you can focus on what matters most. Creation to completion, all in one place.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled: &quot;Do everything in the Site Editor&quot;\" class=\"wp-image-15808\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Do everything in the Site Editor</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Preview Block themes</h3>\n\n\n\n<p>Experience block themes before you switch and preview the Site Editor, with options to customize directly before committing to a new theme.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image about previewing block themes titled Previewing Themes depicting &quot;Previewing: Organizer&quot;\" class=\"wp-image-15769\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Preview a new block theme before you switch and commit</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Create and sync patterns</h3>\n\n\n\n<p>Arrange blocks and save them to the ‘My Patterns’ section for use throughout your site. You can even specify whether to sync your patterns (previously referred to as “Reusable blocks”) so that one change applies to all parts of your site. Or, utilize patterns as a starting point with the ability to customize each instance.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image showing the new My Patterns section in the CMS.\" class=\"wp-image-15768\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>My patterns: All your patterns in one place</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Work faster with the Command Palette</h3>\n\n\n\n<p>Switch to a specific template or open your editor preferences with a new tool that helps you quickly access expanded functionality. With simple keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows), clicking the sidebar search icon in Site View, or clicking the Title Bar, get where you need to go and do what you need to do in seconds.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Command Palette\" class=\"wp-image-15763\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Get to know the new Command Palette </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Sharpen your designs with new tools</h3>\n\n\n\n<p>New design controls bring more versatility for fine-tuning, starting with the ability to customize your captions from the Styles interface without coding. You can manage your duotone filters in Styles for supported blocks and pick from the options provided by your theme or disable them entirely. The Cover block gets added settings for text color, layout controls, and border options, making this powerful block even more handy.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image representing the new design tools in the Site Editor\" class=\"wp-image-15764\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>New design tools</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Track design changes with Style revisions</h3>\n\n\n\n<p>With a new audit trail, you can now see how your site looked at a specific time. Visualize these revisions in a timeline and access a one-click option to restore prior styles.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled &quot;Style Revisions&quot;\" class=\"wp-image-15770\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Style revisions: See your style revision history </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Annotate with the Footnotes block</h3>\n\n\n\n<p>Footnotes add convenient annotations throughout your content. Now you can add and link footnotes for any paragraph.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Footnotes Block\" class=\"wp-image-15766\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Add footnotes effortlessly with the new Footnotes Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Show or hide content with the Details block</h3>\n\n\n\n<p>Use the Details block to avoid spoiling a surprise, create an interactive Q&amp;A section, or hide a long paragraph under a heading.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Details Block\" class=\"wp-image-15765\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Display or hide content with the new Details Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Performance gets a boost</h3>\n\n\n\n<p>WordPress 6.3 has <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">170+ performance updates</a>, including defer and async support for the Scripts API and fetchpriority support for images. These improvements, along with block template resolution, image lazy-loading, and the emoji loader, can dramatically improve your website’s perceived load time.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility remains a core focus</h3>\n\n\n\n<p>Incorporating more than 50 accessibility improvements across the platform, WordPress 6.3 is more accessible than ever. Improved labeling, optimized tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor allow those using assistive technologies to navigate more easily.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other highlights</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Set aspect ratio on images</h4>\n\n\n\n<p>Specify your aspect ratios and ensure design integrity, especially when using images in patterns.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build your site distraction-free</h4>\n\n\n\n<p>Distraction-free designing is now available in the Site Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Rediscover the Top Toolbar</h4>\n\n\n\n<p>A revamped Top Toolbar offers parent selectors for nested blocks, options when selecting multiple blocks, and an interface embedded into the title bar with new functionality in mind.</p>\n\n\n\n<h4 class=\"wp-block-heading\">List View improvements</h4>\n\n\n\n<p>Drag and drop to every content layer and delete any block you would like in the updated List View.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build templates with Patterns</h4>\n\n\n\n<p>Create unique patterns to jumpstart template creation with a new modal enabling access to pattern selection.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Changes in PHP support</h4>\n\n\n\n<p>Support for PHP 5 is discontinued. The&nbsp;new minimum supported version&nbsp;of PHP is 7.0.0.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Failed update safeguards</h4>\n\n\n\n<p>WordPress will now auto-restore the previously installed version of plugins or themes if something goes wrong during a failed manual update.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress and 6.3</h2>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/tutorials/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other resources to level up your knowledge of the latest features in WordPress.&nbsp;</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">6.3 release notes</a> for additional technical details about this release, including feature recaps, installation information, file changes, fixes, and updates.</p>\n\n\n\n<p>Read and subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> for even more helpful WordPress content.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is a global software platform</h2>\n\n\n\n<p><a href=\"https://translate.wordpress.org/stats/\">61 locales have translated 90 percent</a> or more of WordPress 6.3 into their language. Community translators are working hard to ensure more translations are on their way. Thank you, gracias, ありがとう, धन्यवाद, and ευχαριστώ to everyone who helps to make WordPress available in 200 languages.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributing to WordPress</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and <a href=\"https://opensource.org/osd-annotated\">the freedoms that come with open source</a>. Supporting this idea is a large community of people collaborating to strengthen the software. A big thank you to everyone who makes WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">Our community of contributors has always been what makes WordPress wonderful. You are what makes sure our project continues to thrive, and our software remains secure, usable, and impactful. Thank you so much for joining together to make the web (and the world) a better place!</p>\n<cite>Josepha Haden Chomphosy, Executive Director, WordPress.org</cite></blockquote>\n\n\n\n<p>WordPress 6.3 arrives thanks to more than 650 contributors&#8217; collective passion and effort in at least 52 countries. This release also includes over 205 first-time contributors!&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">The 6.3 release squad</h3>\n\n\n\n<p>The 6.3 release was led from start to launch by an active set of contributors from across many disciplines. Over several weeks, they kept the release on track and moving forward by connecting ideas, resolving issues, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Editor Tech Leads:&nbsp; <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon Dodd</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Glecker</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a>, <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a></li>\n\n\n\n<li>Marketing &amp; Communications Leads: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Performance Leads: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">6.3 contributors</h3>\n\n\n\n<p>Complimenting the release squad is a diverse group of contributors whose global collaboration delivered hundreds of enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress community.&nbsp;</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/zgrkaralar/\">&#214;zg&#252;r KARALAR</a> · <a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/softwortech/\">Abhishek Sharma</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/awarner20/\">Adam W. Warner</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adi3890/\">Aditya Jain</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ahsannayem/\">Ahsan Chowdhury</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akmelias/\">akmelias</a> · <a href=\"https://profiles.wordpress.org/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a> · <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrelara/\">Alexandre Lara</a> · <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/akrocks/\">Amaan Khan</a> · <a href=\"https://profiles.wordpress.org/amansurov/\">amansurov</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/sabreuse/\">Amy Hendrix (sabreuse)</a> · <a href=\"https://profiles.wordpress.org/anatoliyav/\">Anatoliy</a> · <a href=\"https://profiles.wordpress.org/anatolikkk/\">Anatoliy Dovgun</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/anilvaza/\">Anil Vaza</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">Ankur Chotai</a> · <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/annziel/\">annziel</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/anver/\">anver</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/ideag/\">Arunas Liuiza</a> · <a href=\"https://profiles.wordpress.org/iamasadpolash/\">Asad Polash</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashikurwp/\">Ashikur Rahman</a> · <a href=\"https://profiles.wordpress.org/nant82/\">Atanas Antonov</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azizantoun/\">azizantoun</a> · <a href=\"https://profiles.wordpress.org/aznadesign/\">Aznadesign</a> · <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a> · <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benlk/\">Ben Keith</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benjibee/\">benjibee</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bitnissen/\">bitnissen</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/wpe_bdurette/\">Brandon DuRette</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> · <a href=\"https://profiles.wordpress.org/brasofilo/\">brasofilo</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/fischfood/\">Brian Fischer</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/caraffande/\">caraffande</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> · <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/mrflannagan/\">Chris Flannagan</a> · <a href=\"https://profiles.wordpress.org/clubkert/\">Chris Lubkert</a> · <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Crixu</a> · <a href=\"https://profiles.wordpress.org/crs1138/\">crs1138</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/cshark/\">cshark</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dbernar1/\">Dan Bernardic</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/danyk4/\">danyk4</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidmusnik/\">davidmusnik</a> · <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densityapps/\">densityapps</a> · <a href=\"https://profiles.wordpress.org/sccr410/\">Derek Ashauer</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> · <a href=\"https://profiles.wordpress.org/digtek/\">DigTek</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dimijazz/\">dimijazz</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doems/\">doems</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/dsar/\">dsar</a> · <a href=\"https://profiles.wordpress.org/dustyreagan/\">dustyreagan</a> · <a href=\"https://profiles.wordpress.org/ebai4/\">ebai4</a> · <a href=\"https://profiles.wordpress.org/ecorica/\">ecorica</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/wpnook/\">Edward</a> · <a href=\"https://profiles.wordpress.org/worldomonation/\">Edwin Takahashi</a> · <a href=\"https://profiles.wordpress.org/ehsanakhgari/\">ehsanakhgari</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/eric7186/\">eric.7186</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/ernest35/\">Ernest Behinov</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a> · <a href=\"https://profiles.wordpress.org/franrosa/\">franrosa</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">gaeldenysiak</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan (a11n)</a> · <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a> · <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/wtower/\">George</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gilles66/\">gilles66</a> · <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/grandslambert/\">GrandSlambert</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a> · <a href=\"https://profiles.wordpress.org/gudmdharalds/\">Gudmundur Haraldsson</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hrdelwar/\">Habibur Rahman Delwar</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/heiko_mamerow/\">Heiko Mamerow</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hrrarya/\">Hridoy Mozumder</a> · <a href=\"https://profiles.wordpress.org/hugobaeta/\">Hugo Baeta</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hberberoglu/\">Huseyin Berberoglu</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ibrahimmonir/\">Ibrahim Khalil</a> · <a href=\"https://profiles.wordpress.org/shuvoaftab/\">Ibrahim Sharif</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/intoxination/\">intoxination</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/jacknotman/\">jacknotman</a> · <a href=\"https://profiles.wordpress.org/jahidcse/\">Jahid Hasan</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> · <a href=\"https://profiles.wordpress.org/janboddez/\">Jan Boddez</a> · <a href=\"https://profiles.wordpress.org/jane/\">jane</a> · <a href=\"https://profiles.wordpress.org/jankyz/\">jankyz</a> · <a href=\"https://profiles.wordpress.org/janpaulkleijn/\">janpaulkleijn</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jbcouton/\">jbcouton</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffmora/\">jeffmora</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/jhnstn/\">jhnstn</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/jomonthomaslobo1/\">Jomon Thomas Lobo</a> · <a href=\"https://profiles.wordpress.org/akbigdog/\">Jon Bourne</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkil&#228;</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josepmoran/\">Josep Mor&#225;n</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jqz/\">jqz</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juzar/\">Juzar</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kamplugins/\">Kausar Al Mamun</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kenwins/\">kenwins</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/koenschipper/\">koenschipper</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kutsu/\">kutsu</a> · <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a> · <a href=\"https://profiles.wordpress.org/leamcaleese/\">L&#233;a McAleese</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/laurentmagnin/\">laurentmagnin</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a> · <a href=\"https://profiles.wordpress.org/lessbloat/\">lessbloat</a> · <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a> · <a href=\"https://profiles.wordpress.org/wplindavantol/\">Linda van Tol</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lowlydev/\">lowlydev</a> · <a href=\"https://profiles.wordpress.org/lphoumpakka/\">lphk</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mehdi01/\">Mahdi Hasan</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">Mahmudul Haque Nadim</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/majaloncar/\">Maja Loncar</a> · <a href=\"https://profiles.wordpress.org/malae/\">Malae</a> · <a href=\"https://profiles.wordpress.org/malavvasita/\">Malav Vasita</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/maniu/\">maniu</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/marcguay/\">MarcGuay</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/marianne38/\">marianne38</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a> · <a href=\"https://profiles.wordpress.org/markdoliner/\">markdoliner</a> · <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">masteradhoc</a> · <a href=\"https://profiles.wordpress.org/mastrup/\">mastrup</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matmoe/\">matmoe</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/matt_fw/\">matt_fw</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maxcgparis/\">maxcgparis</a> · <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcalyster/\">McAlyster</a> · <a href=\"https://profiles.wordpress.org/mcliwanow/\">mcliwanow</a> · <a href=\"https://profiles.wordpress.org/mahamudur78/\">Md Mahamudur Rahaman</a> · <a href=\"https://profiles.wordpress.org/fencermonir/\">Md Monir Hossain</a> · <a href=\"https://profiles.wordpress.org/shuvo247/\">MD Shakibul Islam</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mikeday/\">Michael Day</a> · <a href=\"https://profiles.wordpress.org/michaelh/\">MichaelH</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikecho/\">mikecho</a> · <a href=\"https://profiles.wordpress.org/mikeyzm/\">mikeyzm</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> · <a href=\"https://profiles.wordpress.org/studionashvegas/\">Mitch Canter</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/mitchoyoshitaka/\">mitcho (Michael Yoshitaka Erlewine)</a> · <a href=\"https://profiles.wordpress.org/moinrrahmed/\">Moe</a> · <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a> · <a href=\"https://profiles.wordpress.org/mohanrajp/\">Mohan Raj</a> · <a href=\"https://profiles.wordpress.org/patelmohip/\">Mohip Patel</a> · <a href=\"https://profiles.wordpress.org/mohiuddinomran/\">Mohiuddin Omran</a> · <a href=\"https://profiles.wordpress.org/boemedia/\">Monique Dubbelman</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a> · <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> · <a href=\"https://profiles.wordpress.org/mtxz/\">mtxz</a> · <a href=\"https://profiles.wordpress.org/thisisyeasin/\">Muhammad Yeasin</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/tushar284/\">Nahid Hasan</a> · <a href=\"https://profiles.wordpress.org/narthur/\">Narthur</a> · <a href=\"https://profiles.wordpress.org/nataliat2004/\">nataliat2004</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/nazmulhudadev/\">Nazmul Huda</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nickpap/\">nickpap</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/njsamsatli/\">njsamsatli</a> · <a href=\"https://profiles.wordpress.org/nkeller15/\">nkeller15</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/orestissam/\">Orestis Samaras</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patriciahillebrandt/\">patriciahillebrandt</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/strategio/\">Pierre Sylvestre</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/piyushtekwani/\">Piyush Tekwani</a> · <a href=\"https://profiles.wordpress.org/pkbhatt/\">pkbhatt</a> · <a href=\"https://profiles.wordpress.org/platonkristinin/\">Platon Kristinin</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a> · <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> · <a href=\"https://profiles.wordpress.org/prashantvatsh/\">Prashant Singh</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prikari/\">Priyanka Adhikari</a> · <a href=\"https://profiles.wordpress.org/przemekhernik/\">Przemek Hernik</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/bi0xid/\">Rafa Poveda</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ratneshsonar/\">Ratnesh Sonar</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rembem/\">rembem</a> · <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a> · <a href=\"https://profiles.wordpress.org/richiecarey/\">Richie Carey</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/rob1n/\">rob1n</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a> · <a href=\"https://profiles.wordpress.org/algorithmsunlocks/\">Ruman Ahmed</a> · <a href=\"https://profiles.wordpress.org/rutviksavsani/\">Rutvik Savsani</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">S&#233; Reed</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/suleymankenar/\">S&#252;leyman Kenar</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/samnajian/\">SamNajian</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarequl/\">Sarequl Basar</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sdavis2702/\">Sean Davis</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/enchiridion/\">Shannon Little</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreyasikhar26/\">Shreyas Ikhar</a> · <a href=\"https://profiles.wordpress.org/shubhamsedani/\">shubhamsedani</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/shvv/\">shvv</a> · <a href=\"https://profiles.wordpress.org/shwetabathani2312/\">Shweta Bathani</a> · <a href=\"https://profiles.wordpress.org/siddhantwadhwani/\">Siddhant Wadhwani</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth ravikumar</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/simonemanfre/\">Simone</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirajummahdi/\">Sirajum Mahdi</a> · <a href=\"https://profiles.wordpress.org/sboerrigter/\">Sjoerd Boerrigter</a> · <a href=\"https://profiles.wordpress.org/sjoerdlinders/\">Sjoerd Linders</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/enderandpeter/\">Spencer</a> · <a href=\"https://profiles.wordpress.org/sque/\">sque</a> · <a href=\"https://profiles.wordpress.org/srikanthmeenakshi/\">srikanthmeenakshi</a> · <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/vanaf1979/\">Stephan Nijman</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/suzettefranck/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/mt_suzette/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/nuhel/\">Syed Nuhel</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/thakordarshil/\">Thakor Darshil</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/thunderdw/\">thunder rumbles</a> · <a href=\"https://profiles.wordpress.org/tijmensmit/\">Tijmen Smit</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/tb1909/\">Tim Brath&#228;rig</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/r0uter/\">tonythomas01</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/scep/\">Tryon</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/tyb/\">TyB</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshmcakadi/\">Umesh Patel</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/uxtremist/\">uxtremist</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/valterlorran/\">valterlorran</a> · <a href=\"https://profiles.wordpress.org/vasilism/\">Vasilis Manthos</a> · <a href=\"https://profiles.wordpress.org/victoranto/\">victoranto</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wlindley/\">wlindley</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">wplmillet</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xmarcos/\">xmarcos</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani Iliev</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zdrobau/\">Zdrobau</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress support forums</h3>\n\n\n\n<p>Many thanks to the community volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved today</h3>\n\n\n\n<p>If contributing to WordPress appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and explore the product roadmap on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>. You can also use this <a href=\"https://make.wordpress.org/contribute/\">interactive tool</a> to help you decide which team is right for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking toward the future</h2>\n\n\n\n<p>20 years ago this past May, <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">WordPress shipped the very first version, 0.7</a>. What started with a blog post from co-founder Matt Mullenweg and a subsequent comment by co-founder Mike Little eventually evolved into the world’s most popular web publishing platform.</p>\n\n\n\n<p>WordPress software continues to evolve and iterate based on the needs and desires of its robust and diverse user community. This release is the capstone of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a> along the WordPress <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>. As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">6.3 Haiku</h2>\n\n\n\n<p>A capstone release<br>Ships tools for building great sites<br>Collaboration</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15718\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Concerns over the European Union’s Cyber Resilience Act (CRA)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:25:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"cra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15686\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:216:\"\"Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation.\" Learn more about the Cyber Resilience Act and its impact on open source.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4334:\"\n<p>As the world’s most popular open source content management system, WordPress acknowledges the European Union&#8217;s initiative to bolster the cybersecurity of digital hardware and software products with the <a href=\"https://www.european-cyber-resilience-act.com/\">Cyber Resilience Act (CRA)</a>. The Act’s effort to counter the increasing threat of cyberattacks and promote informed usage of digital products with increased security updates and transparency is commendable.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>While we wholly endorse the objectives of the CRA, we are apprehensive about the Act&#8217;s implications on open source software due to unclear terms and definitions. </p>\n</blockquote>\n\n\n\n<p>Specifically, the Act’s prohibition on &#8220;unfinished software&#8221; and ambiguous definition of &#8220;commercial activity&#8221; could inadvertently inhibit innovation and economic participation in the European digital landscape.</p>\n\n\n\n<p>Open source projects, like WordPress, often rely on continual updates and improvements—a process that may technically fall under the label of &#8220;unfinished.&#8221; Furthermore, the ambiguous definition of &#8220;commercial activity&#8221; could unintentionally encompass open source projects that are largely driven by communities and operate on a not-for-profit basis.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our letter to the EU Commission</h2>\n\n\n\n<p>We have jointly authored an open letter addressing these concerns alongside fellow open source projects Drupal, Joomla!, and TYPO3<sup data-fn=\"eb28afbc-3487-447f-9af9-8b0418310a00\" class=\"fn\"><a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00\" id=\"eb28afbc-3487-447f-9af9-8b0418310a00-link\">1</a></sup>. The letter emphasizes the significant contribution of Free and Open Source Software (FOSS) to the EU&#8217;s economy and how the proposed regulations might undermine these efforts. Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation inherent to both the open source community and the <a href=\"https://european-union.europa.eu/principles-countries-history/principles-and-values/aims-and-values_en\">EU’s Aims and Values</a>.</p>\n\n\n\n<p>The letter invites the EU Commission and interested parties to participate in a seminar in Brussels to discuss how we can align the objectives of the CRA with the realities and needs of the FOSS community. We are optimistic that, with mutual understanding and cooperation, we can achieve secure digital products without limiting the vital contributions of open source projects.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-2 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://wordpress.org/news/files/2023/08/Open_Letter_on_the_Significance_of_Free_and_Open_Source_Software_in_the_EU_s_Proposed_Cyber_Resilience_Act.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Read the letter</a></div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\"><ol class=\"wp-block-footnotes\"><li id=\"eb28afbc-3487-447f-9af9-8b0418310a00\"><a href=\"https://www.drupal.org/\">Drupal</a>, <a href=\"https://www.joomla.org/\">Joomla!</a>, <a href=\"https://typo3.com/\">TYPO3</a>, and <a href=\"https://wordpress.org/\">WordPress</a> are the most popular FOSS content management systems on the web today. While all are based on the PHP programming language and distributed under the GPL open source license, each platform takes a different approach to website publishing. With strength in diversity, they form the Inter-CMS Working Group, promoting the values and benefits of free and open source software. <a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00-link\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/21a9.png\" alt=\"↩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />︎</a></li></ol></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15686\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.3 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 16:55:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15615\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:226:\"WordPress 6.3 Release Candidate 3 is now available for download and testing.\n\nThe WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6221:\"\n<p>WordPress 6.3 RC3 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC3 on a test server and site.&nbsp;</p>\n\n\n\n<p>The WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release.&nbsp;</p>\n\n\n\n<p>For a deeper look into this release, read this overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new since RC2</h2>\n\n\n\n<p>Since the RC2 release on July 25, 2023, there have been approximately 14 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Github</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F25%2F2023..08%2F01%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>. To prepare for 6.3 general availability, RC3 also addresses several <a href=\"https://github.com/WordPress/gutenberg/pull/53089\">bugs</a> and adds fixes for retrieving templates (<a href=\"https://github.com/WordPress/wordpress-develop/pull/4940\">#4940</a>) and resolving child theme issues (<a href=\"https://github.com/WordPress/gutenberg/issues/53138\">#53138</a>). Thank you for testing, WordPressers!</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by the community of people collaborating on and contributing to its development. The resources below outline a variety of ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Download RC3 for testing</h3>\n\n\n\n<p>You can test WordPress 6.3 RC3 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2:</strong> Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC3.zip\">RC3 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3: </strong>Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC3</code></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Keep WordPress bug-free—help with testing</h3>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes or plugins? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>This is your final opportunity to test your latest versions against RC3. You will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a>&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>Phase two, soon complete<br>A monumental release<br>Then onto six-four.</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/meher/\">@Meher</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, and <a href=\"https://profiles.wordpress.org/jpantani/\">@jpantani</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"People of WordPress: Ihtisham Zahoor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 20:22:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15589\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"People of WordPress features Ihtisham Zahoor, an administrator turned web developer from Pakistan.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12334:\"\n<p>From administrator to web developer thanks to the supportive WordPress community. Through learning from other software users in Pakistan, Ihtisham Zahoor knew that his life would change. He moved cities and careers to make his life through open source.</p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&#038;ssl=1\" alt=\"Ihtisham Zahoor in the moutains.\" class=\"wp-image-15478\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?w=1900&amp;ssl=1 1900w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Ihtisham, from Haripur, a city in northern Pakistan, said: “The WordPress community made me a firm believer in the power of open source software. This is why I am an enthusiast and one who enjoys contributing back to the community via writing, speaking, and helping organize meetups.”</p>\n\n\n\n<p>When Ihtisham discovered WordPress, his fascination for working with computing grew. He knew he did not want to just work in administration his entire career.</p>\n\n\n\n<p>Ihitsham describes himself as an ‘introvert’ and therefore the idea of remote work appealed as he could still add value to others through technology. He was intrigued by the thought of the freedom to choose his work hours. However, without access to others who had already transformed their careers and lives through web development, he felt he ‘had no path to follow to turn my dream into a reality.’</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Challenges become opportunities to learn when there is an active community&nbsp;&nbsp;</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"675\" height=\"900\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=675%2C900&#038;ssl=1\" alt=\"Ihtisham Zahoor wearing a sweatshirt with the London tube sign \'Mind the Gap\'.\" class=\"wp-image-15480\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?w=675&amp;ssl=1 675w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 675px) 100vw, 675px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Lacking any kind of informed support network to advise or guide him, Ihtisham devoted time to online research to find the next steps he could take. Looking back, he believes that for those who are not in a network with others with similar interests, it can be hard to keep learning and experimenting with new things. Isolation can be a barrier to working in web development.&nbsp;&nbsp;</p>\n\n\n\n<p>He said: “I think it is not easy to stay motivated when there aren’t immediate rewards for the hard work we do. Sometimes, weeks would go by when my only focus would be to stay motivated rather than give up.”</p>\n\n\n\n<p>After another two years of combining learning and work, Ihtisham took up using WordPress as a full-time career. He moved to the capital of Pakistan, Islamabad. It was not easy at first. He recalls: “After many failed attempts at getting hired and desperate moments, I finally received an offer from a digital agency as a web developer focused on the WordPress platform.”</p>\n\n\n\n<p>He added: “Moving to work with a bigger agency was one of the best decisions of my life as it helped me with my professional growth by becoming familiar with the whole WordPress ecosystem in a supportive environment. I was valued for my opinions in the web projects in which I was involved. I was also appreciated and encouraged for the open source work I did for the company.” He summarized his enthusiasm for WordPress like this: “It is really interesting figuring out what is happening in the backends. I like problem-solving and finding solutions which you can do with WordPress.”</p>\n\n\n\n<p>During the Covid-19 pandemic, Ihtisham moved to join a start-up based in his hometown which provides web development services to international clients. He works as a developer and has the opportunity to learn more about client communication and project management. “WordPress has opened up so many opportunities for me. It has been an exciting journey for me with lots of learning every day,” he said. In particular, he has discovered an interest in APIs and regularly uses his spare time to follow tickets in the hope of one day contributing even more to topics, such as, third-party app integration through APIs on WordPress sites.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Give back through WordPress community</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"800\" height=\"599\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=800%2C599&#038;ssl=1\" alt=\"Ihtisham Zahoor speaking at a meetup.\" class=\"wp-image-15477\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?w=800&amp;ssl=1 800w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=768%2C575&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>It was not just software that made a difference in Ihtisham’s life. Joining a welcoming and sharing community was transforming for him. Recalling those early days of isolation, he values the WordPress community and is wholly committed to the power of open-source software. He now enjoys writing, speaking, and organizing meetups to give back to both to the community. He has written software for the platform and contributes to the Core work, which he describes as a ‘humbling’ experience. He is fond of <a href=\"https://islamabad.wordcamp.org/\">WordCamp Islamabad</a> and in 2023 is on the organizing team to help bring both WordPress and its community to others in Pakistan.</p>\n\n\n\n<p>“My first experience,” he said, “was that everyone was so friendly and open to sharing what they have learned, even though they were all busy working. This really had an impact on me. It really helped me and gave me the confidence that I could work with WordPress…. It was a real step forward for me joining this community.” </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"512\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&#038;ssl=1\" alt=\"Ihtisham visited WordCamp Karachi.\" class=\"wp-image-15482\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>A particular meeting in 2018 led to new friendships through the WordPress community. Ihtisham was on a train to Karachi for the first ever Pakistani WordCamp in 2018 and met a group of fellow attendees he now regards as close friends. What impressed him most about the camp was that although he met many people with considerable expertise, they also had a generosity of spirit and humbleness in their willingness to share this knowledge. in sharing it. Now, he and this group of friends make a point to taking trains across the country, which allows him to fulfil another dream of traveling widely. He says these things and other ‘side benefits’ have been made possible by the WordPress community, and for that, he is &#8216;forever grateful&#8217;.<br><br>Ihtisham particularly wanted to share his story through this People of WordPress article to encourage those starting with little or no support to remain persistent. He knows from experience breaking into the tech world can be hard, especially when you may be switching from doing something else and have no ‘track record’ to offer. </p>\n\n\n\n<p>He feels he is a living example of how perseverance can lead to success. He offers these words to anyone thinking of making a move into development using the WordPress platform: “I attribute my success (financial and mental well-being) to the open-source nature of WordPress and its amazing community. It would not be possible to learn and use the plethora of free tools WordPress provides if it weren’t an open-source platform. It is for that reason I feel obligated to contribute back to this platform to the best of my abilities.” To those who are finding getting going difficult, as he did, he adds: “Get yourself a clear learning path and just dive in doing WordPress, and things will get better for you over time as they were for me, I promise. Good Luck!”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<p>To help you discover more about how to use the WordPress software, there is a free resource from the community, <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Ihtisham Zahoor (<a href=\"https://profiles.wordpress.org/shaampk1/\">@shaampk1</a>) for sharing about his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\"//profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Nalini Thakor (<a href=\"//profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), and Meher Bala (<a href=\"//profiles.wordpress.org/meher/\">@meher</a>) for interviews, the feature and collaborating on images. To Chloe Bringmann (<a href=\"//profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Mark Smallman (<a href=\"//profiles.wordpress.org/marks99/\">@marks99</a>), and Mary Baum (<a href=\"//profiles.wordpress.org/marybaum/\">@marybaum</a>) for reviews. Thanks to the late Surendra Thakor (<a href=\"//profiles.wordpress.org/sthakor/\">@sthakor</a>), Maja Loncar (<a href=\"//profiles.wordpress.org/majaloncar/\">@majaloncar</a>), Maedah Bahtool (<a href=\"//profiles.wordpress.org/maedahbatool/\">@maedahbatool</a>) and other members of the Marketing and Polyglots Team for their contributions.</p>\n\n\n<p>The People of WordPress series thanks Josepha Haden (<a href=\"//profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>) and Topher DeRosia (<a href=\"//profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for their support.</p>\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Synced Patterns: The Evolution of Reusable Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 14:45:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15541\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:369:\"Synced patterns are replacing Reusable blocks, offering a unified creation experience for new pattern functionality coming to WordPress 6.3. Patterns, first introduced in WordPress 5.5, are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. With WordPress 6.3, set to be released [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6153:\"\n<p>Synced patterns are replacing Reusable blocks, offering a unified creation experience for new pattern functionality coming to WordPress 6.3. Patterns, first introduced in WordPress 5.5, are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. With WordPress 6.3, set to be released on August 8th, you will be able to arrange blocks in unlimited ways and save them as patterns for use throughout your site, directly within the editing experience. You can also specify whether to sync your patterns, so that one change applies to all parts of your site, or to keep them unsynced, so you can customize each instance.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/plZIF3jrU7E?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Create your own patterns</h2>\n\n\n\n<p>The ability to create your own patterns, on top of using the ones bundled into each WordPress release, opens up a world of possibilities. Need to repeat the same contact information across your site and keep it up to date? Create a synced pattern with all the details, and say goodbye to repeating yourself, with the ability to quickly insert the synced pattern wherever you need it. If you find yourself creating various banners for your site and want them to have the same layout with unique content, creating an unsynced pattern speeds up your workflow and ensures a level of consistency in approach. While themes and plugins have been able to offer patterns to users and <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/curating-the-editor-experience/#utilizing-patterns\">curate the experience</a>, this update allows agencies and site builders to do the same for their clients, directly in the site building process.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Dig into the details</h2>\n\n\n\n<p>Any previously made Reusable blocks will continue to function as they do now, just under the new Synced pattern name. To help adjust to these changes, a few contextual notices will be placed throughout the interface. Specifically, the menu item in the creation flow will show as “Create pattern/reusable block” until the prompt describing the switch is dismissed in one of the various locations, including the naming and syncing modal:&nbsp;</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/fbrhammtn3Y?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>For folks using block themes, all patterns will be listed alongside template parts in the Site Editor &gt; Patterns section, where you can enter a focused editing mode to make changes. For Classic themes, the prior reusable block management page will now house patterns in a list, similar to the Posts &gt; All Posts view.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"590\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1024%2C590&#038;ssl=1\" alt=\"Patterns section of the WordPress Site Editor with My Patterns selected\" class=\"wp-image-15569\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1024%2C590&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=300%2C173&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=768%2C443&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1536%2C885&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?w=2048&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>For a complete overview of patterns on your site, all patterns provided by themes and plugins will be shown in this section but without the option to edit directly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Go further</h2>\n\n\n\n<p>With the ability to create your own patterns baked into the creation experience, remember that you can copy the patterns available in the <a href=\"https://wordpress.org/patterns/\">Pattern Directory</a> and <a href=\"https://wordpress.org/patterns/about/\">contribute back</a>, an excellent way to democratize design for every WordPress user and the web.</p>\n\n\n\n<p><em>For more exciting features coming to patterns in WordPress 6.3, </em><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\"><em>read on in the Advancing the Power of Patterns post</em></a><em>. Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>Chloé Bringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/jpantani/\"><em>Jonathan Pantani</em></a><em>, </em><a href=\"https://profiles.wordpress.org/chanthaboune/\"><em>Josepha</em></a><em>, </em><a href=\"https://profiles.wordpress.org/kristastevens/\"><em>Krista Stevens</em></a><em>, </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>Nicholas Garofalo</em></a><em>, <a href=\"https://profiles.wordpress.org/provenself/\">Peter Rubin</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15541\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.3 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 16:43:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15460\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:246:\"WordPress 6.3 RC2 is ready for download and testing. Reaching this part of the release cycle is a key milestone. While release candidates are considered ready for final release, additional testing and use by the community can only make it better.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Meher Bala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7642:\"\n<p>WordPress 6.3 RC2 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, or run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>While release candidates are considered ready for final release, additional testing and use by the community can only make it better.</p>\n\n\n\n<p>WordPress 6.3 is scheduled for release on August 8, 2023 – just two weeks from today.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.&nbsp;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">RC2 Highlights</h2>\n\n\n\n<p>Since the RC1 release on July 18, 2023, there have been approximately 15 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\" data-type=\"link\" data-id=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Editor</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F18%2F2023..07%2F25%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>.</p>\n\n\n\n<p>Notable updates for this release include:</p>\n\n\n\n<ul>\n<li>Footnotes will be reverted or restored with post revisions (<a href=\"https://github.com/WordPress/gutenberg/pull/52686\">#52686</a>).</li>\n\n\n\n<li>Distraction free adds a missing command in the site editor (<a href=\"https://github.com/WordPress/gutenberg/pull/52868\">#52868</a>).</li>\n\n\n\n<li>Global styles revisions will display text if no revisions are found (<a href=\"https://github.com/WordPress/gutenberg/pull/52865\">#52865</a>).</li>\n\n\n\n<li>The About Page has been completed (<a href=\"https://core.trac.wordpress.org/ticket/58067\">#58067</a>).</li>\n\n\n\n<li>The About Page now includes a “Get Involved” section (<a href=\"https://core.trac.wordpress.org/ticket/23348\">#23348</a>).</li>\n\n\n\n<li>The dark mode option has been restored in the block editor iframe for Twenty Twenty-One (<a href=\"https://core.trac.wordpress.org/ticket/58835\">#58835</a>).</li>\n\n\n\n<li>Max height value was fixed in the image scaling in the Edit Media screen (<a href=\"https://core.trac.wordpress.org/ticket/50523\">#50523</a>).</li>\n\n\n\n<li>Additionally, some issues regarding internationalization were addressed (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58879\" target=\"_blank\">#58879</a>, <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58067\" target=\"_blank\">#58067</a> and <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58864\" target=\"_blank\">#58864</a>).</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Test features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 RC2</h2>\n\n\n\n<p>You can test WordPress 6.3 RC2 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC2.zip\">RC2 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC2</code></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks to WordPress plugin and theme developers</h2>\n\n\n\n<p>Do you build plugins and themes? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>Hopefully, you have already tested your themes and plugins with WordPress 6.3 betas by now. With RC2, you will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Haiku for RC2</h2>\n\n\n\n<p>Time is nearly here<br>WordPress shines thanks to you all<br>Let’s get testing, dear</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/priethor/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/priethor/\">@Priethor</a></em>,<em> <a href=\"https://profiles.wordpress.org/audrasjb/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/audrasjb/\">@AudrasJb</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/davidbaumwald/\">@DavidBaumwald</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">@JPantani</a></em> and <em><a href=\"https://profiles.wordpress.org/meher/\">@Meher</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WordPress 6.3 Live Product Demo – Highlights &amp; Recording\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2023 19:26:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"live demo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15445\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"Watch a demonstration of some of the newest features of WordPress 6.3, recorded live on July 20, 2023.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8111:\"\n<p>WordPress 6.3 ships on August 8th! For a sneak peek of what&#8217;s to come, members of the 6.3 release squad, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> and <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, held a live demo moderated by <a href=\"https://profiles.wordpress.org/njwrigley/\">Nathan Wrigley</a>.&nbsp;</p>\n\n\n\n<p>More than 100 attendees watched as some of the most anticipated product features were demonstrated, from the brand-new Command Palette to new design tools and more.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/I2dvEbBxaqA?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div><figcaption class=\"wp-element-caption\">6.3 Live Product Demo</figcaption></figure>\n\n\n\n<p>Here are some of the key takeaways from the 6.3 live product demonstration.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Command Palette’s big debut</h2>\n\n\n\n<p>One of the most anticipated features of 6.3 is the <a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Command Palette</a>. It lets you quickly navigate and open different WordPress functions within the post and Site Editor. Access it using a shortcut command (Command + K or Control + K).</p>\n\n\n\n<h2 class=\"wp-block-heading\">Page creation gets easier in the Site Editor</h2>\n\n\n\n<p>Now you can browse and edit pages within the Site Editor, providing a more cohesive WordPress experience. A new drafting flow debuts, allowing you to create and publish pages directly within the editor.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Synced Patterns set to replace Reusable Blocks</h2>\n\n\n\n<p>You can create and manage all your patterns directly in the Site Editor. Once edited, all synced patterns (previously called Reusable Blocks) will change across a site—a huge time saver when making changes.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Stay on top of design changes with Style Revisions</h2>\n\n\n\n<p>This enhancement offers a visual timeline of your site so you can see all the revisions in your site’s history and restore a previous style with just a click.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">New design tools and blocks</h2>\n\n\n\n<p>Controls for specifying aspect ratios to ensure design integrity, especially when using images in Patterns debut in 6.3, along with new blocks for Footnotes and Details. Easily add footnotes to your content and have them automatically linked to the corresponding text. With the Details block, hide or display content to create spoilers or accordions.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Performance</h2>\n\n\n\n<p>WordPress is getting faster with 6.3 as content with images will see speedier load times. Both theme types (Classic and Block) will also benefit from performance improvements. The upcoming <a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">hallway hangout</a> is an excellent opportunity to learn more about performance enhancements directly from the WordPress Performance team.</p>\n\n\n\n<h2 class=\"wp-block-heading\">More from Core</h2>\n\n\n\n<ul>\n<li>Revert to previously installed versions when <a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">manual updates for themes and plugins fail</a>.&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support</a> for PHP 5. The new minimum supported version of PHP will be 7.0.0. The recommended version of PHP remains at 7.4 or greater.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">Accessibility updates</a>, especially for List View and the broader Site Editor experience.</li>\n\n\n\n<li>Improvements to internationalization <a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">just-in-time translation loading</a>.</li>\n</ul>\n\n\n\n<p>These new features and more await you as Phase 2 of the <a href=\"https://wordpress.org/about/roadmap/\">WordPress Roadmap</a> comes to a close with the 6.3 release.</p>\n\n\n\n<p>A <a href=\"https://make.wordpress.org/core/2023/07/21/6-3-live-product-demo-qa/\">question and answer session</a> followed the demo, with attendees asking plenty of great questions. The panelists shared links for additional reading regarding many new features—all conveniently added to the end of this post.&nbsp;</p>\n\n\n\n<p>A big thank you to everyone who helps make WordPress. Contributors power every WordPress release. Without the hundreds of contributors worldwide who help build WordPress, this live product demo wouldn’t have been possible. Thank you for all of your hard work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">References from the Live Demo</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the Power of Patterns</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/documentation/article/comparing-patterns-template-parts-and-reusable-blocks/\">Comparing Patterns, Template Parts, and Reusable Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">The 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support for PHP 5</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">Internationalization Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/30496\">#30496 Site Editor: MVP Customizer Compatibility/Integration</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/52128\">#52128 Customization Ongoing Roadmap</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/building-sidebars-with-the-site-editor/\">Building sidebars with the Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n</ul>\n\n\n\n<p>Props to <a href=\'https://profiles.wordpress.org/richtabor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>richtabor</a> and <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> for reviewing this post and to <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, and <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a> for their logistics support to run the event.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15445\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.3 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jul 2023 17:08:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15431\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:246:\"WordPress 6.3 RC1 is ready for download and testing. Reaching this part of the release cycle is a key milestone. While release candidates are considered ready for final release, additional testing and use by the community can only make it better.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11307:\"\n<p>WordPress 6.3 RC1 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC1 on a test server and site.&nbsp;</p>\n\n\n\n<p>Reaching this part of the release cycle is a key milestone. While release candidates are considered ready for final release, additional testing and use by the community can only make it better.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, and review the <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>. Save the date for a <a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">live product demo</a> scheduled for Thursday, July 20, 2023, at 16:00 UTC (<a href=\"https://us02web.zoom.us/j/88141234315?pwd=TE1Odk5Wd0hiVlNYWHB5Q2xCYkhSZz09\">Zoom link</a>). This live demo will be a great opportunity to join the WordPress community to celebrate the accomplishments of 6.3 and this final chapter of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">RC1 highlights</h2>\n\n\n\n<p>Thanks to the many WordPress beta testers, this release contains 40+ (Editor) and 80+ (Trac) updates since the <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-beta-4/\">Beta 4 release</a>. Keep it up WordPressers!</p>\n\n\n\n<p>Notable updates for this release include:</p>\n\n\n\n<ul>\n<li>WordPress database error when installing PHPUnit tests (<a href=\"https://core.trac.wordpress.org/ticket/58673\">#58673</a>)</li>\n\n\n\n<li>Use <code>_get_block_template_file</code> function and set $area variable (<a href=\"https://github.com/WordPress/gutenberg/pull/52708\">#52708</a>)</li>\n\n\n\n<li>Indicate when a theme supports the Site editor in the Themes REST API response (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58123\" target=\"_blank\">#58123</a>)</li>\n\n\n\n<li><code>bulk_edit_posts()</code> function needs an action hook (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/28112\" target=\"_blank\">#28112</a>)</li>\n\n\n\n<li>Allow editing existing footnote from formats toolbar (<a href=\"https://github.com/WordPress/gutenberg/pull/52506\">#52506</a>)</li>\n\n\n\n<li>Patterns: Add client side pagination to patterns list (<a href=\"https://github.com/WordPress/gutenberg/pull/52538\">#52538</a>)</li>\n\n\n\n<li>Trim footnote anchors from excerpts (<a href=\"https://github.com/WordPress/gutenberg/pull/52518\">#52518</a>)</li>\n</ul>\n\n\n\n<p>Browse the technical details for issues addressed since Beta 4 using these queries:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">GitHub commits for 6.3</a></li>\n\n\n\n<li>Closed <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F11%2F2023..07%2F18%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac tickets</a> since July 11</li>\n</ul>\n\n\n\n<p>For a recap of what’s coming in 6.3, please refer to the <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">Beta 2 post</a>, which summarizes key features.</p>\n\n\n\n<p>You can also dig into technical information about various components in 6.3:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the Power of Patterns</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n\n\n\n<p>For a compilation of the dev notes above and more, read the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a>.&nbsp;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Test the new features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 RC1</h2>\n\n\n\n<p>You can test WordPress 6.3 RC1 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC1.zip\">RC1 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC1</code></li>\n</ul>\n\n\n\n<p>The current target for the final release is <strong>August 8, 2023</strong>, about three weeks away. Your help testing this version ensures everything in this release is the best.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks to WordPress plugin and theme developers</h2>\n\n\n\n<p>Do you build plugins and themes? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>Chances are, you have already been testing your latest themes and plugins with WordPress 6.3 betas. With RC1, you will want to complete your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.3 release cycle.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Haiku for RC1</h2>\n\n\n\n<p>RC1 is here<br>Hold your applause ‘til the end<br>Download, test, repeat</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@DanSoschin</em></a>, <a href=\"https://profiles.wordpress.org/meher/\"><em>@Meher</em></a>, and <a href=\"https://profiles.wordpress.org/jpantani/\"><em>@JPantani</em></a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15431\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WP Briefing: Episode 60: Sneak a Peek at WordPress 6.3 with Special Guest Mike Schroder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Jul 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15398\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:176:\"Join WordPress Executive Director Josepha Haden Chomphosy and Core Tech Lead Mike Schroder as they discuss their favorite new features and enhancements coming in WordPress 6.3.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2023/07/WP-Briefing-060.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:31362:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy and Core Tech Lead Mike Schroder as they discuss their favorite new features and enhancements coming in WordPress 6.3.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Guests: <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a><br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/6-3/\">WordPress 6.3 Development Cycle and Release Team</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3:&nbsp;Rollback&nbsp;for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the power of Patterns</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\">Core Editor Improvement: Smoother Site Editing</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/#text-blocks-now-with-footnotes\">Text blocks: now with footnotes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/?s=%22details+block%22#details-block\">The Details block is now stable</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><strong>A small list of big things</strong>\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/07/05/wcus-2023-contributor-day-help-needed/\">WCUS 2023 Contributor Day: Help Needed!</a> &#8211; The WordCamp US Contributor Team is asking for help with their new approach to organizing this year’s Contributor Day.</li>\n\n\n\n<li>Watch the <a href=\"https://us.wordcamp.org/2023/news/\">WCUS News page</a> for a call for open-source-related art, poetry, and music.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/category/releases/\">WordPress Releases</a> &#8211; Find WordPress 6.3 RC1 and other releases.</li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/06/16/celebrating-the-completion-of-the-meetup-reactivation-project/\" target=\"_blank\">Celebrating the Completion of the Meetup Reactivation Project</a></li>\n</ul>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/06/22/attention-wordpress-event-organizers-this-important-workshop-on-july-20-2023-is-for-you/\">WP Diversity Workshop for WordPress event organizers</a> &#8211; Join this 2.5-hour interactive watch party online on July 20, 2023, to learn how to create welcoming and diverse WordPress&nbsp;Meetups&nbsp;and WordCamps for your WordPress community.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">6.3 Live Product Demo</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<span id=\"more-15398\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<p><em>( Intro music )</em></p>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><em>( Intro music continues )</em></p>\n\n\n\n<p>[00:00:39] <strong>Josepha:</strong> We have with us Mike Schroder. They are on the WordPress 6.3 release squad, and I believe, Mike, that your role there is the Core Tech Lead.</p>\n\n\n\n<p>Is that right?</p>\n\n\n\n<p>[00:00:50] <strong>Mike:</strong> Yeah, that&#8217;s correct. I&#8217;m one of the tech leads along with Andrew Ozz and David Baumwald.</p>\n\n\n\n<p>[00:00:56] <strong>Josepha:</strong> Thank you so much for being able to join me today.</p>\n\n\n\n<p>[00:00:58] <strong>Mike:</strong> Thanks for inviting me.</p>\n\n\n\n<p>[00:01:00] <strong>Josepha:</strong> This is our 6.3 sneak peek, and so it has a little bit of a &#8220;What do you wish people knew about the upcoming release?&#8221; aspect to it, but it also has like a &#8220;What do we find most interesting about the work that we&#8217;ve been doing in this release so far?&#8221;</p>\n\n\n\n<p>As the Core Tech Lead, what currently is like your favorite thing that y&#8217;all are getting into the release or the thing that&#8217;s the most interesting or happiest to finally be done with it?</p>\n\n\n\n<p>[00:01:27] <strong>Mike:</strong> Yeah, I think there are a couple of things. So I was playing around with the release in anticipation for this, and one of the favorite sort of user-facing features that I played with was the live preview for Block themes. And it just makes it feel so intuitive to open up a new Block theme and play around with Styles and different designs and see how it looks.</p>\n\n\n\n<p>I really enjoyed it, opened it up on my personal site and started messing around with different color palettes and things like that, and it was a lot of fun.</p>\n\n\n\n<p>[00:01:55] <strong>Josepha:</strong> Like it&#8217;s a live preview, but also with all of the content they already have on your site.</p>\n\n\n\n<p>[00:01:59] <strong>Mike:</strong> It does use the templates and so it, it shows some of the live content from the from the homepage, for instance, and some of those blocks, and some of the other areas are editing the templates rather than the live content. But yes, it was neat to play around with it and see my blog content in the background and yeah, some real-time design. That was really fun.</p>\n\n\n\n<p>[00:02:20] <strong>Josepha:</strong> And has that been a big focus of the release? Was it something that you and the other Tech Leads both for the Core side and the Editor side just had to focus a lot on in this round of the release?</p>\n\n\n\n<p>[00:02:33] <strong>Mike:</strong> So I was not a part of a lot of that work. So I&#8217;m not gonna take credit for it. I think that is the culmination, all of those different things together of a lot of the things that the Editor team has been working on for some time. And it was just, it was really refreshing to see it.</p>\n\n\n\n<p>The other feature that I had in my head, if it&#8217;s okay for me to talk about a second one, is something that has been trying to get landed in Core for quite some time, and that has to do with automatic rollbacks. If plugin updates or theme updates start to happen and then they fail in the middle of that update, then it will automatically restore the previous version of the plugin or theme. And that&#8217;s a pretty big improvement over the previous behavior, which could result not as well.</p>\n\n\n\n<p>[00:03:16] <strong>Josepha:</strong> Right. Where you would just have a site that was like, &#8220;Best of luck to you,&#8221; and emails that told you what kind of probably was broken. I shouldn&#8217;t be sassy about that. The WSOD protection that we put in really was a huge leap forward for the way that we handled that in the past, but this is great news.</p>\n\n\n\n<p>[00:03:34] <strong>Mike:</strong> Yes, I was so excited when that landed, and this is I guess the next part of that. And it&#8217;s been, yeah, it&#8217;s been in the works for a long time, through testing and there was an entire team that did a lot of work on it in a future plugin. And I&#8217;m very excited to see it land.</p>\n\n\n\n<p>[00:03:49] <strong>Josepha:</strong> That&#8217;s great. That&#8217;s one of those things that we hope a WordPress user never has to know exists. Like it&#8217;s always our hope that the plugins work perfectly and the themes work perfectly. And so unless something is going really wrong you won&#8217;t know that&#8217;s a feature. Surely it tells you like, &#8220;This didn&#8217;t update by the way. Go figure that out.&#8221;</p>\n\n\n\n<p>[00:04:08] <strong>Mike:</strong> Yeah, the whole idea of this particular feature is to make it feel more like everything is smooth and one site continues to work, and the underpinning of it has been going in for a couple of releases. The whole idea is to make the experience more smooth for users.</p>\n\n\n\n<p>[00:04:21] <strong>Josepha:</strong> Cool. That auto rollback actually was not on my radar as a thing to keep an eye out for in this release, so that&#8217;s really neat. One of the things that I saw as I was doing, I don&#8217;t do any complicated testing. I mostly do like testing of what users would expect with the workflow with my eyeballs and a mouse.</p>\n\n\n\n<p>[00:04:40] <strong>Mike:</strong> Well, that&#8217;s, that&#8217;s wonderful.</p>\n\n\n\n<p>[00:04:42] <strong>Josepha:</strong> I&#8217;m not doing any of the fancy testing with like code, but one of the things that I saw as I was working through my general, just regular test, my spot check click around test was that it looks like there&#8217;s some consolidation, some consolidation of the navigation in the Editor.</p>\n\n\n\n<p>So, it had I think maybe Pages and Templates in there before, and now there are five things in there. Do you have a bit of a concept of what went into that, what we&#8217;re hoping everybody&#8217;s gonna be able to accomplish there now?</p>\n\n\n\n<p>[00:05:13] <strong>Mike:</strong> So I, I was not involved as much in the later stages of this, but I was in a couple of the first couple iterations of this particular feature, and I think this is, I don&#8217;t want to guess the exact amount of times that this has been sort of reworked so the experience is good for users, there been so much effort that&#8217;s gone into helping navigation be a comfortable experience for people to work with within the site editor.</p>\n\n\n\n<p>And what I have heard is that everyone that&#8217;s worked on it is very excited that it&#8217;s landing and that users will be able to experience it and more easily work with navigation.</p>\n\n\n\n<p>[00:05:46] <strong>Josepha:</strong> Yeah, I think that navigation is one of those things, both like creating good navigation as a software designer, but then also as somebody who&#8217;s like putting together a website. Good navigation is hard to do. And it&#8217;s design where everyone&#8217;s, &#8220;Good design is invisible,&#8221; and we don&#8217;t actually mean that.</p>\n\n\n\n<p>We don&#8217;t mean it&#8217;s invisible. We mean it&#8217;s not intrusive, it doesn&#8217;t get in your way, it acts in the way you think it&#8217;s going to act, and it knows or has a good guess about where you&#8217;re trying to be, what you&#8217;re trying to do in that particular moment on a site. And so like the fact that we&#8217;ve had probably hundreds of people working on navigation inside the software is no surprise to me, but I bet it&#8217;s gonna be a surprise to a lot of people.</p>\n\n\n\n<p>They&#8217;ll be like, &#8220;It&#8217;s like folders, right?&#8221; Turns out it&#8217;s not.</p>\n\n\n\n<p>[00:06:33] <strong>Mike:</strong> Yes, it was, incredibly, incredibly difficult to design. I know there was, the couple instances that I was most involved with, I know there was so much discussion about how folks are used to working with navigation within WordPress and sort of what expectations are for menus and what expectations are for, you know, users both that have been using WordPress for a long time and users who, who are new to WordPress, and the Site Editor. And having all of those considerations from the various stakeholders just makes it a really difficult design problem.</p>\n\n\n\n<p>[00:07:03] <strong>Josepha:</strong> Yeah, absolutely. And I mean, not for nothing like the WP Admin itself, that dashboard inside the WordPress software, like that&#8217;s been due for an update for quite some time. This is the same one that I think we&#8217;ve had since 2008, which was also very disruptive in its way. And so like it was a good disruption, but we really haven&#8217;t made any substantial changes to it since then. And part of it is because there are so many use cases for WordPress, and we don&#8217;t have a good concept of that because we don&#8217;t have a lot of tracking in the software. We don&#8217;t take anyone&#8217;s like data about what field they work in. We don&#8217;t do any of that.</p>\n\n\n\n<p>And so it&#8217;s hard for us to account for all of the use cases and get a really excellent design for a majority of the people that are gonna be using it. Because like we don&#8217;t actually build software for robots around here. Not yet.</p>\n\n\n\n<p>[00:07:54] <strong>Mike:</strong> <em>( laughs )</em> Yeah.</p>\n\n\n\n<p>[00:07:55] <strong>Josepha:</strong> No, I don&#8217;t think we&#8217;ll ever be robot-building software.</p>\n\n\n\n<p>[00:07:57] <strong>Mike:</strong> I doubt it, but I also don&#8217;t wanna predict the future. No, I agree. And I think that is absolutely one of the super tricky things about building WordPress. I&#8217;m really glad that WordPress doesn&#8217;t collect any of that data. And it makes it so that the sort of testing that, that you were talking about, in user studies and things like that, are incredibly helpful for figuring out what the best approaches are.</p>\n\n\n\n<p>[00:08:21] <strong>Josepha:</strong> Yeah, absolutely. Since we&#8217;re just in the zone of like things that Josepha likes and that she saw, I&#8217;m gonna also do this other thing. In one of the last couple of releases, the Style Book came out, which was such an exciting thing for me. It&#8217;s great to be able to see whether or not all of the style choices you&#8217;ve made in various parts of the admin or in the code, depending on how you&#8217;re doing things.</p>\n\n\n\n<p>It&#8217;s nice to make sure, in one big set, that like everything is coherent. Everything that you thought you changed did get changed and it looks the way that you wanted it to look in concert with everything else in there. And it looked like we now have revisions specific to styles, like styling things across the site, have revisions.</p>\n\n\n\n<p>Is that right?</p>\n\n\n\n<p>[00:09:06] <strong>Mike:</strong> That&#8217;s correct.</p>\n\n\n\n<p>[00:09:07] <strong>Josepha:</strong> I think that&#8217;s a super big deal because as somebody who is just, I&#8217;m filled with techno joy. I don&#8217;t always want to look at a manual. I just want to do stuff until it breaks and then hope I can fix it. The hoping you can fix it part <em>( laughs )</em> can sometimes be really nerve-wracking if what you&#8217;re doing is creating a site for a client or you are working on your first big theme and you wanna make sure that&#8217;s all together.</p>\n\n\n\n<p>And so style revisions to go along with some of the Editor revisions I think is a great change.</p>\n\n\n\n<p>[00:09:39] <strong>Mike:</strong> Same. Absolutely. This is not a feature I have, done too much particular playing with, at this point.</p>\n\n\n\n<p>[00:09:44] <strong>Josepha:</strong> You&#8217;re a very skilled developer.</p>\n\n\n\n<p>[00:09:46] <strong>Mike:</strong> I appreciate that. That&#8217;s very kind. I think that adding revisions to anything that folks regularly change in posts or pages is, really important. And making it very easy to get to both make forward changes and also to realize, &#8220;Oh, there was this other change that was, you know, there was three clicks ago that I really loved. How do I get back to that? How do I see the history?&#8221; And that&#8217;s what I love about that sort of feature. Being able to really easily see, &#8220;Okay, when did this happen? In what series? How can I jump back and get to that spot that felt right.&#8221;</p>\n\n\n\n<p>[00:10:19] <strong>Josepha:</strong> Yes. Anytime that we can have that kind of historical layering of things, I think is good. I went to a meetup. I like to go to meetups that are 101 content, because that&#8217;s like the folks that really need new refined processes the most. But I went to a 101 meetup a couple years back, and I remember that the presenter was saying like, take a theme that you pretty much like and make some changes until you have a theme that you love.</p>\n\n\n\n<p>And people kept saying like, &#8220;Yeah, but what if I break everything?&#8221; And he said in the middle of that to everyone, not knowing who I was because who cares? He was like, &#8220;Yeah, WordPress is not gonna let you do anything that will completely destroy a theme or completely destroy your site. There&#8217;s an undo button and you can just undo it. It&#8217;ll be fine.&#8221; And I was like, &#8220;Yeah, that is true now.&#8221;</p>\n\n\n\n<p>[00:11:15] <strong>Mike:</strong> I love that.</p>\n\n\n\n<p>Gosh. I mean, I remember when I was playing with my first WordPress site, and even to make really small changes with navigation or with menus, I had to go in and make changes to the PHP code, and none of that was protected.</p>\n\n\n\n<p>[00:11:31] <strong>Josepha:</strong> You&#8217;re like, &#8220;This is free-range me out here.&#8221;</p>\n\n\n\n<p>[00:11:34] <strong>Mike:</strong> I love, absolutely. I love that is just no longer the case anymore and it&#8217;s super easy to go in and play with a theme and make changes without worrying about any of that. And, I mean, I may be a developer, but that&#8217;s the way I would prefer. That&#8217;s the way I go in and edit my sites now too.</p>\n\n\n\n<p>If I wanna mess with a theme, go in, and it was the Customizer and now it&#8217;s the Site Editor, and it&#8217;s great.</p>\n\n\n\n<p>[00:11:58] <strong>Josepha:</strong> Yeah, it&#8217;s a leap forward, I think, leap forward.</p>\n\n\n\n<p>So another thing that I ran into, I guess it&#8217;s two things that I ran into while I was wandering around in there recently, and it&#8217;s possible that I ran into these two things because I just personally love them the most, but the Footnotes block looks like it is potentially going to land.</p>\n\n\n\n<p>I have been so excited about this block for no reason. I have dreams about it. I wish that were not a true statement. I did recently have a dream about it. I dreamt that it didn&#8217;t land in the release, and that I went to talk to Ella about it and she was like, &#8220;Oh, yeah, publishers have given up on footnotes and they&#8217;re just doing end notes now, and so I decided not to ship it.&#8221; Like this is a dream I had.</p>\n\n\n\n<p>And so I&#8217;m a little worried, but tomorrow I&#8217;m gonna be like, &#8220;Hey, Ella, friend, what&#8217;s happening?&#8221; And she&#8217;s gonna be like, &#8220;Yeah, end notes are where it&#8217;s at.&#8221;</p>\n\n\n\n<p>And then the other block that I&#8217;m personally very excited about is what I like to call the &#8220;Spoilers block.&#8221; I know it is not &#8220;Spoilers&#8221;, it&#8217;s the called &#8220;Details,&#8221; but anytime I&#8217;ve ever used that after like early, early times in my career, early in my career, I used to call them accordions and I don&#8217;t know why, but now I call them &#8220;Spoiler blocks.&#8221; But I know it&#8217;s actually called the &#8220;Details block,&#8221; where you can put in a piece of information at the top, essentially a title, and then expand it to get more information in there.</p>\n\n\n\n<p>So are both of those actually gonna land or am I gonna be heartbroken?</p>\n\n\n\n<p>[00:13:24] <strong>Mike:</strong> As far as I&#8217;m aware, yes. I know that I haven&#8217;t checked recently on the latter, but I was just playing with the Footnotes block, and it&#8217;s really cool. I really like the interface. I think that it makes it really simple to add quick footnotes to, anywhere in the site, and everything feels very automated and simple.</p>\n\n\n\n<p>[00:13:46] <strong>Josepha:</strong> As someone who every, almost everything that I&#8217;ve ever written, I want to have an aside in it, which essentially just becomes a footnote. One of the weirdest parts about Gutenberg at first is that like, the asterisk way of doing it, where you just put one after the word and then put one at the start. The asterisk makes it into a list block, and for a long time you also couldn&#8217;t escape it, and so I had to do a lot of fancy footwork to get my footnotes to work for a while, and so I&#8217;m excited for that.</p>\n\n\n\n<p>[00:14:15] <strong>Mike:</strong> I think I had similar discouraging moments with lists and I was really encouraged by the way the footnotes select, and I&#8217;m sure there are other ways to do it too, but select, right-click, footnote, and they all automatically go to the bottom order, all of it. It&#8217;s a really smooth process.</p>\n\n\n\n<p>[00:14:31] <strong>Josepha:</strong> Yeah. I&#8217;m really excited about it. I know that like for the last two or three major releases, a bulk of what we&#8217;ve been offering to folks is like, design stuff, and we&#8217;re just like, &#8220;It&#8217;s a bunch of design things,&#8221; but this release actually has over 500 different tickets that were marked as features or enhancements that are going into it.</p>\n\n\n\n<p>And so, you and I have talked about seven things so far, but I also understand that there are literally 500 tickets or so that were marked as &#8220;feature&#8221; or &#8220;enhancement.&#8221; And so we are definitely not gonna catch everything that goes in there, but there is kind of a group of another group of enhancements to the design tools because of course this wraps up the bulk of phase two so that we can all move into the collaborative editing phase.</p>\n\n\n\n<p>And so like, do you have a sense for, like is this just mostly polish for those design and like image media management kinds of things? Or are there big features that are coming in those also?</p>\n\n\n\n<p>[00:15:29] <strong>Mike:</strong> My understanding is that it&#8217;s all of the above. I think that there are a lot of new features being added along with polish to those features. And I think the neatest thing is that there are also a lot of enhancements that are focused on bringing all of those things together and making it feel like more of a connected experience. And so I think that&#8217;s my favorite part so far in testing that I&#8217;ve been doing of, the many, as you mentioned, so many additional new features that, that we&#8217;re added this time. And, I have a huge amount of respect for, you know, everyone that works, for the huge amount of folks that work on it across the project.</p>\n\n\n\n<p>[00:16:07] <strong>Josepha:</strong> Yeah. Yeah, you&#8217;ve given a couple of answers where you were like, &#8220;I wasn&#8217;t personally involved in that,&#8221; but on the one hand, I was like, &#8220;Everyone knows that we&#8217;re not all personally involved in it,&#8221; but on the other hand, not everybody knows how many people touch all of these tickets and features and bugs and tests as we get them ready to be put into the release.</p>\n\n\n\n<p>Last year, I was super worried that like, post active fear of Covid, and now everyone just like deciding that they&#8217;ve done their best and they&#8217;re going back out there. Like I was really worried that everyone was gonna be having so much fun out of the house, that they would stop contributing.</p>\n\n\n\n<p>[00:16:43] <strong>Mike: </strong><em>( laughs )</em></p>\n\n\n\n<p>[00:16:44] <strong>Josepha:</strong> I know, but we actually had one of our most active years for contributors last year, which means that especially for the releases that are coming this year, the people who worked all the way through last year, like almost 2000, I think, contributors, just to code, that&#8217;s not even like the contributors who worked on reigniting the community and putting together events, all of those things like all of the other things that we do.</p>\n\n\n\n<p>It&#8217;s, it is remarkable to me that when we look at any feature it is definitely been looked at or worked on, or at least passed through desks of easily a hundred people, even for small little things. And I just love that, the depth of the work we do.</p>\n\n\n\n<p>[00:17:29] <strong>Mike:</strong> Absolutely. Same. I remember wondering about that too, about your same sort of concerns. And it&#8217;s been really great to be a part of the community as it&#8217;s essentially, as it&#8217;s grown together again, I think is maybe the best way I can think of to say it. That&#8217;s been quite wonderful.</p>\n\n\n\n<p>[00:17:46] <strong>Josepha:</strong> Yeah, absolutely. Mike, this has been an absolutely delightful conversation. Is there anything you would like to leave us with before we move on to our small list of big things today?</p>\n\n\n\n<p>[00:17:58] <strong>Mike:</strong> The release candidate for 6.3 comes out tomorrow, and what I would love the most is if anyone in interested in testing, anyone, whether it&#8217;s testing exactly like this sort of testing that you were just talking about, with loading the RC and clicking around and seeing what works the best and what doesn&#8217;t work and what feels good and what doesn&#8217;t, or if it&#8217;s testing, if you&#8217;re like a plugin or a theme developer, testing with those things to see how things work and looking for backwards compatibility breaks that are unexpected so we can fix them before release.</p>\n\n\n\n<p>If you work at a hosting company or you make sites for folks, helping test that to see that it works really well on your platforms for folks that you work with. I think all of those would be super helpful, and there are testing instructions that can be found on the release candidate announcement page.</p>\n\n\n\n<p>[00:18:43] <strong>Josepha:</strong> Perfect. Wonderful. Mike, thank you so much for joining me today.</p>\n\n\n\n<p>[00:18:47] <strong>Mike:</strong> Thank you so much. I&#8217;ve really appreciated the time.</p>\n\n\n\n<p><em>( Musical interlude )</em></p>\n\n\n\n<p>[00:18:49] <strong>Josepha:</strong> That brings us now to our small list of big things. It&#8217;s actually kind of a big list of big things today. So first on the list is that WordCamp US has a Contributor Day and we need your help. So the WordCamp US Contributor Team has contacted all of the team reps asking for help with a new approach to organizing this year&#8217;s Contributor Day.</p>\n\n\n\n<p>The hope is to make the initial steps to contribution easier. And so they&#8217;re asking teams who will be present to help participate with that process. I will have a link in the show notes to the post that has more information.</p>\n\n\n\n<p>Also second thing related also to WordCamp US is that I would like to put out a call for art and music, especially that is related to open source and the freedoms that it brings. So one of the things that makes WordPress so fantastic in the world is not only that like we&#8217;re creating opportunities for folks, we&#8217;re offering economic, and I don&#8217;t know, philosophical freedoms to people, but we frequently do think about that in the vein of, you know, commerce and work and the economy, and we rarely think about it in the obviously related subset of arts and music. And so I also would like to put out a call for any open source related arts or poetry or music that you all have created.</p>\n\n\n\n<p>I would love to be able to display some of that at WordCamp US this year. I don&#8217;t think I have a link quite yet for a call for that, but as soon as I do, I&#8217;ll send it out on social media and other places.</p>\n\n\n\n<p>The third thing on our small list of big things is that, as Mike mentioned, tomorrow is the RC1 release date for WordPress 6. 3, and you can help us to test that.</p>\n\n\n\n<p>It&#8217;s always good for us to test any release as it&#8217;s working its way through the process, but certainly by the time it gets to RC, that&#8217;s when we are pretty sure it&#8217;s going to be as stable as possible. We&#8217;ve done some soft string freezes and feature freezes-ish. And so that&#8217;s about as stable as it&#8217;s going to get. And so I encourage everyone to get out and test that as much as possible. And in all the ways that Mike shared.</p>\n\n\n\n<p>Item number four, we are also reaching a milestone. So, a couple weeks ago, we reached the one year milestone for the start of the Meetup Reactivation Project.</p>\n\n\n\n<p>We have about 50% of our Meetup groups reactivated. If you are listening to this and you are a Meetup organizer and you haven&#8217;t heard from anyone from WordCamp Central or the community team, I&#8217;m going to put a link to the notes, or rather, a link to the post in the notes so that you can also learn more about that.</p>\n\n\n\n<p>You don&#8217;t have to hear from us in order to get your meetup group going again. But, if you are interested to know what has gone into that process, or always just want to know what&#8217;s going on in the community side of things, that&#8217;s a good place to start. So there will be a link to that in the show notes as well.</p>\n\n\n\n<p>Number five, WordPress event organizers in general, but also anyone. So there are two different events coming up on Thursday, on July 20th.</p>\n\n\n\n<p>First, there is the WP Diversity Workshop. This is added workshop for us to help promote the ideas of building diverse and inclusive WordPress events. And so, this is not necessarily one of those events for people who want to increase their skills in speaking so that they are able to, to speak confidently at a WordPress event. These are for people who are organizing WordPress events and want to make them more inclusive and more diverse from the start. I encourage any organizer to go to it, regardless of whether you&#8217;re doing WordPress events or not, but certainly for WordPress events that is something that we care about and want to have included in our entire event series.</p>\n\n\n\n<p>The other thing that&#8217;s happening on Thursday, because like I said, two things happening on Thursday, is that we have a WordPress 6. 3 live product demo. We&#8217;ve been doing these for the last few releases, and you get a couple of people from either the release squad, or like folks who do that kind of developer relations work in WordPress, who sit down and just do a general click-through, a general run through, a public demo of what we expect to land in the release.</p>\n\n\n\n<p>And so that also is on Thursday. I will also have a link for you in the show notes. If you are listening to this not on WordPress.org and you don&#8217;t know where the show notes are, don&#8217;t worry. The show notes are on WordPress.org. You go to WordPress.org/news/podcast and in the transcript there are show notes that have links to all of these things.</p>\n\n\n\n<p>And that, my friends, is your big, small list of big things. Thank you for tuning in today for the WordPress Briefing. Thank you again for my guest, Mike&#8217;s, time. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p><em>( Outtro music )</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15398\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Designed with WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2023/07/designed-with-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Jul 2023 22:33:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15401\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"The Gutenberg project has aimed to revolutionize how we manage web content as much as Johannes Gutenberg did the printed word. The project&#8217;s roadmap is comprised of four unique phases: With the upcoming release of WordPress 6.3, Phase 2 of the Gutenberg project is coming to a close; a journey worth celebrating. This video is [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4271:\"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"812\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?resize=1024%2C812&#038;ssl=1\" alt=\"\" class=\"wp-image-15421\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?resize=1024%2C812&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?resize=300%2C238&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?resize=768%2C609&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a> project has aimed to revolutionize how we manage web content as much as <a href=\"https://en.wikipedia.org/wiki/Johannes_Gutenberg\">Johannes Gutenberg</a> did the printed word. The project&#8217;s <a href=\"https://wordpress.org/about/roadmap/\">roadmap</a> is comprised of four unique phases:</p>\n\n\n\n<ol>\n<li>Easier Editing — Already available in WordPress, with ongoing improvements</li>\n\n\n\n<li>Customization — Full site editing, block patterns, block directory, block themes</li>\n\n\n\n<li>Collaboration — A more intuitive way to co-author content</li>\n\n\n\n<li>Multilingual — Core implementation for Multilingual sites</li>\n</ol>\n\n\n\n<p>With the upcoming release of WordPress 6.3, Phase 2 of the Gutenberg project is coming to a close; a journey worth celebrating.</p>\n\n\n\n<p>This video is an ode to Gutenberg&#8217;s editing and customization phases, celebrating the new design tools and the possibilities they create. The piece encapsulates the exciting steps made in the past that propel the vibrant future of WordPress.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/FcTLMTyD2DU?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Everything showcased in the video is built entirely with the WordPress Editor, using currently available blocks, patterns, and themes. This new era has opened the ability for the design community to contribute to the project directly without depending on developers to translate their ideas into designs. Consider this an invitation for designers to join a new generation that embraces the diverse and expressive capabilities of WordPress.</p>\n\n\n\n<p>The work that goes into Gutenberg is a powerful testament to the collaboration of coders, developers, and designers in our community. United, we strive to build WordPress into a realm of significance and lasting impact.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Video credits</h2>\n\n\n\n<p><strong>Video credits:</strong> <a href=\"https://profiles.wordpress.org/tinobarreiro/\">Tino Barreiro</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/iamtakashi/\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/iamarinoh/\">Henrique Lamarino</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a>, and Holographik. </p>\n\n\n\n<p><i>Thank you to the post authors </i><a style=\"font-style: italic\" href=\"https://profiles.wordpress.org/tinobarreiro/\">Tino Barreiro</a><i>, </i><a style=\"font-style: italic\" href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a><i>, </i><a style=\"font-style: italic\" href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a><i>, </i><a style=\"font-style: italic\" href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <em>and <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15401\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 10 Aug 2023 05:08:18 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 08 Aug 2023 23:38:54 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 3\";}}s:5:\"build\";s:14:\"20230809052849\";}','no'),(271,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1691687299','no'),(272,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1691644099','no'),(273,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1691687300','no');
INSERT INTO `wp_options` VALUES (274,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"WPTavern: WordPress Plugin Review Team Addresses Backlog of 900+ Plugins, Implements Strategies to Improve Approval Process\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147639\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"https://wptavern.com/wordpress-plugin-review-team-addresses-backlog-of-900-plugins-implements-strategies-to-improve-approval-process\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4003:\"<p>WordPress&#8217; Plugin Review team is wading through a backlog that was over 900 plugins awaiting approval earlier this week. The current count has 870 plugins sitting in the <a href=\"https://wordpress.org/plugins/developers/add/\">review queue</a>, with an average wait time of 61 days before initial review.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1856\" height=\"388\" />\n\n\n\n<p>WordPress developer Marcus Burnette <a href=\"https://twitter.com/marcusdburnette/status/1688961018943221778\">drew attention to the matter on Twitter</a> after submitting a plugin he created to display a gallery of your own WordPress Photo Directory photos on your website. Other developers commented on his post, reporting that their recently-approved plugins took two months.</p>\n\n\n\n<p>WordPress Executive Director Josepha Haden Chomphosy responded with an invitation to contributors who want to learn how to review plugins and <a href=\"https://make.wordpress.org/plugins/handbook/apply/\">apply to join the team</a>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">There\'s an open application for anyone who wants to learn how to review these plugins and help us chip away at the backlog! <a href=\"https://t.co/nDF3tiOuvH\">https://t.co/nDF3tiOuvH</a> <a href=\"https://t.co/28lrCFtx4U\">https://t.co/28lrCFtx4U</a></p>&mdash; Josepha Haden Chomphosy (@JosephaHaden) <a href=\"https://twitter.com/JosephaHaden/status/1688983991792078848?ref_src=twsrc%5Etfw\">August 8, 2023</a></blockquote>\n</div>\n\n\n\n<p>The volunteer team responsible for reviewing plugins has undergone significant restructuring after the departure of long-time contributor Mika Epstein. In June, the team <a href=\"https://wptavern.com/wordpress-plugin-review-team-adds-6-new-sponsored-volunteers-opens-applications\">added six new sponsored volunteers</a> and opened applications for more team members. They have selected new team reps and have more than 20  applicants who have expressed interest in volunteering.</p>\n\n\n\n<p>&#8220;The first challenge we found during our onboarding was the fact that a lot of processes were not clearly documented,&#8221; newly selected team rep Francisco Torres said in a recent <a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">update</a>. &#8220;We asked A LOT of questions during this process and ensured that all the answers Mika shared with us were added to the team’s internal docs. This effort should make it a lot easier for new contributors to join the team down the road.</p>\n\n\n\n<p>&#8220;We have also improved our internal tools to catch the most common coding mistakes and have built our predefined responses into the output provided by this tool. We still review this content manually before sending out replies, but by merging the two tasks into one (reviewing the code and drafting the message) we have been able to cut down review time considerably.&#8221;</p>\n\n\n\n<p>In strategizing ways to cut through the formidable plugin backlog, the team has begun speeding up the process by performing a cursory initial review, followed by a more thorough one once the plugin author has fixed the most obvious issues.</p>\n\n\n\n<p>&#8220;In order to tackle the backlog faster, we’re now spending less time on initial reviews,&#8221; Torres said. &#8220;We begin checking issues that take us less time, and then as soon as we spot one or two issues with the plugin that would prevent it from being approved, we email the plugin author to ask them to fix the initial issues. If the author gets back to us with those first fixes, then we proceed with an in-depth review.&#8221;</p>\n\n\n\n<p>A two-month wait can be demoralizing for developers who are excited to share their open source plugins with the world. Now that the whole process is getting documented and refined to be more efficient, the Plugin Review Team will be better able to onboard new reviewers and put them in place to tackle the backlog. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Aug 2023 01:39:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: Kadence Blocks 3.1.11 Patches Critical Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147644\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/kadence-blocks-3-1-11-patches-critical-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1925:\"<p>The <a href=\"https://wordpress.org/plugins/kadence-blocks/\">Kadence Blocks</a> plugin, which is used on more than 300,000 WordPress sites, has patched a critical vulnerability in its Advanced Form Block file upload capability. Version 3.1.11, released on August 8, 2023, patches the security issue with the form uploads.</p>\n\n\n\n<p>The plugin&#8217;s development team is getting out ahead of the situation by posting an <a href=\"https://www.kadencewp.com/blog/kadence-blocks-3-1-11-includes-patch-for-critical-vulnerability/\">advisory</a> on their blog, with a short description of the vulnerability and its potential for exploit.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The Kadence Advanced Form Block, introduced in Kadence Blocks 3.1, offers site owners the ability to add a file upload capability to their site. The code within the Advanced Form Block had insufficient tests to limit what types of files can be uploaded. This could allow attackers to upload a file claiming to be a valid image type that actually contained malicious PHP code. That PHP code could be malicious, and in so doing, take over a vulnerable WordPress website. Exploiting this vulnerability would require a settings at the server level that would be considered insecure. Most premium hosting providers secure upload folders from PHP execution at the server level, though many budget hosting providers do not.</p>\n</blockquote>\n\n\n\n<p>Kadence Blocks developer Ben Ritner said sites that are not using the Advanced Form Block file upload capability are not subject to this vulnerability. At this time the vulnerability is not known to have been exploited.</p>\n\n\n\n<p>Kadence Blocks users are encouraged to update immediately and check for unexpected users, admin accounts, and content changes. The advisory also includes ways to make file uploads more secure, including limiting file type, adding authentication, and scanning for viruses.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2023 20:36:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"Post Status: WordPress 6.3 • Release Workflows • European Union Cyber Resiliency Act • Gutenberg Accessibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=150107\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://poststatus.com/wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18999:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (August 7, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress 6.3, Lionel, has been released. It&#8217;s time to test out the details and footnotes blocks, give the <code>WP_DEVELOPMENT_MODE</code> a try, and check out the new Get Involved tab on the Welcome screen. <br /><br />The WordPress Training team announces its first course cohort for <a href=\"https://Learn.WordPress.org\">Learn.WordPress.org</a>. The course will cover Developing Your First WordPress Block, and offer real-time collaborative learning. <br /><br />In December of 2021, Log4j vulnerability sparked governmental-level decision-making implications in the EU (<a href=\"http://digital-strategy.ec.europa.eu/en/library/cyber-resilience-act\">Cyber Resiliency Act</a>) and USA (<a href=\"https://cisa.gov/sbom\">SBOM</a>). WordPress, Drupal, Joomla, and Typo3 have shared concerns regarding  the EU CRA. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fas_rocket kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, 1st LearnWP Cohort, EU CRA</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f195.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9d1-1f3fd-200d-1f3eb.png\" alt=\"??‍?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort</a><br /><br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2934.png\" alt=\"⤴\" class=\"wp-smiley\" /><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f510.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/contribute\">Contribute</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-2\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-7\">\n<div class=\"wp-block-column is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-5\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/07/matrix-test-results/\">Matrix Test Results</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/new-github-feature-request-separating-access-to-the-meetup-and-wordcamp-trackers/\">New GitHub Feature Request: Separating access to the Meetup and WordCamp trackers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/community-team-meeting-agenda-for-3-august-2023/\">Community Team Meeting Agenda for 3 August, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Recap: Inaugural NextGen Pilot Events</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">WordPress 6.3 performance improvements</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/styling-blocks-empowering-users-with-css-custom-properties/\">Styling blocks: empowering users with CSS custom properties</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/09/dev-chat-agenda-august-9-2023/\">Dev Chat agenda, August 9, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/editor-chat-agenda-9-august-2023/\">Editor Chat Agenda: 9 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/04/summary-for-docs-team-meeting-august-1-2023/\">Summary for Docs Team meeting, August 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/documentation-team-update-august-7-2023/\">Documentation Team Update – August 7, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/mobile-team-update-august-8th/\">Mobile Team Update – August 8th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/08/07/last-week-openverse-2023-07-31-2023-08-07/\">A week in Openverse: 2023-07-31 – 2023-08-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/08/performance-chat-summary-8-august-2023/\">Performance Chat Summary: 8 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/plugin-review-team-7-august-2023/\">Plugin Review Team: 7 August 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/adding-some-meta-buttons-always-visible/\">Adding some meta buttons always visible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/new-wordpress-org-theme-for-your-rosetta-site/\">New WordPress.org Theme for your Rosetta Site</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/test-team-update-7-august-2023/\">Test Team Update: 7 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/08/07/themes-team-meeting-agenda-for-august-08-2023/\">Themes team meeting agenda for August 08, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/themes-team-update-august-08-2023/\">Themes team update August 08, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/04/wcus-contributor-day-tutorials-workshop-in-person-remote/\">WCUS Contributor Day: Tutorials Workshop (In-Person &amp; Remote)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/exploring-wordpress-6-3/\">Exploring WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-use-the-spacer-block/\">How to use the spacer block</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-6\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-5\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-contributor-day-online-session-2\">Training Team Contributor Day Online Session</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-global-variables\">Common WordPress APIs: Global Variables</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-11\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%83%95%E3%83%AB%E3%82%B5%E3%82%A4%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%A7%E5%AE%9F%E9%9A%9B%E3%81%AB%E3%82%B5%E3%82%A4%E3%83%88%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">フルサイト編集で実際にサイトを作ってみよう!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-wordpress-community-team-events-and-roles\">Contributing to the WordPress Community Team: Events and Roles</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-extending-blocks-with-custom-design-tools\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-start-contributing-to-the-wordpress-core\">How to start contributing to the WordPress Core</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2023 20:02:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Akismet: How to Disable Comments in WordPress (and When Not to)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=160334\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://akismet.com/blog/how-to-disable-comments-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20675:\"<p>The heart of an online presence lies in its engaging community, and what better way to foster such engagement than allowing users to post comments? Yet, there are moments when it might be necessary to hit the &#8220;off&#8221; switch. If your comments section gets flooded with spam, your impulse may be to automatically close comments before things get too messy.&nbsp;</p>\n\n\n\n<p>But you don&#8217;t necessarily need to do that. Today, we&#8217;ll delve into how to disable comments in WordPress and also discuss situations where this isn&#8217;t the best decision. And we&#8217;ll explore solutions to common concerns, such as managing spam, using powerful tools like Akismet.</p>\n\n\n\n<p>Let&#8217;s get right to it.</p>\n\n\n\n<span id=\"more-160334\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">Turning off comments to stop spam? Install Akismet instead</h2>\n\n\n\n<p>Before you disable comments altogether, consider what’s really bothering you.</p>\n\n\n\n<p>Is it the <a href=\"https://akismet.com/blog/how-to-stop-comment-spam-in-wordpress/\">flood of spam</a> making your management duties unbearable? Or, are trolls wreaking havoc on your site&#8217;s overall positive vibes? It&#8217;s natural to feel overwhelmed and think of disabling comments as the quick fix. But there’s a better method you can employ.</p>\n\n\n\n<p>Enter <a href=\"https://akismet.com/\">Akismet</a>, your staunch ally in the battle against spam. This robust tool packs quite a punch when it comes to filtering out spammy content, letting you revel in the genuine, quality interaction with your users.</p>\n\n\n\n<img width=\"900\" height=\"526\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image2.jpg\" alt=\"Akismet homepage with the text, \" />\n\n\n\n<p>A blend of simplicity and power, Akismet is astoundingly easy to use. Once installed and set up, it works quietly behind the scenes of your entire WordPress site, sifting through incoming comments, and sweeping away spam. All you&#8217;re left with are the comments that truly matter. You&#8217;ll see the difference immediately and wonder how you ever managed without it.</p>\n\n\n\n<p>Here are a few features that make Akismet your hero:</p>\n\n\n\n<ul>\n<li><strong>Automatic spam detection</strong>: It checks and filters every comment, so you don&#8217;t have to spend your precious time discerning real comments from spam.</li>\n\n\n\n<li><strong>A flexible discard feature</strong>: You have complete control. You can choose to discard the worst and most pervasive spam, so you&#8217;ll never have to see it.</li>\n\n\n\n<li><strong>A visible comment status history</strong>: For each comment, Akismet provides a status history, so you can understand where the spam was caught, cleared, or missed.</li>\n</ul>\n\n\n\n<p>This is all fine and well, but maybe it seems like too much trouble. Couldn&#8217;t you just disable comments across the board and be done with it? Certainly, you could. But there are tangible <a href=\"https://akismet.com/blog/wordpress-pros-and-cons-of-enabling-comments/\">benefits to keeping comments turned on</a> in WordPress.&nbsp;</p>\n\n\n\n<p>For instance, comments can:</p>\n\n\n\n<ul>\n<li>Boost community engagement</li>\n\n\n\n<li>Encourage repeat visitors</li>\n\n\n\n<li>Provide a way to get quick feedback</li>\n\n\n\n<li>Improve on-page SEO</li>\n</ul>\n\n\n\n<p>But if left to run amuck, an overabundance of spam comments can leave a sour taste in visitors&#8217; mouths. An unmoderated comment section can:</p>\n\n\n\n<ul>\n<li>Look unprofessional</li>\n\n\n\n<li>Affect site security</li>\n\n\n\n<li>Attract more spam comments</li>\n\n\n\n<li>Create more work for admins</li>\n</ul>\n\n\n\n<p>All that being said, before you decide to disable comments in WordPress for future posts entirely, give Akismet a shot. It&#8217;s the solution that preserves your community engagement while keeping your WordPress website clean and spam free.</p>\n\n\n\n<p>Still, there might be situations where you want to learn how to turn off comments in WordPress. Perhaps you&#8217;ve decided to repurpose your blog as a purely informational site, or maybe you have a specific WordPress post that doesn’t require engagement. Whatever your reasons, we&#8217;ll walk you through the process next.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Still want to disable WordPress comments? Here are four ways to do so:</h2>\n\n\n\n<p>While we advocate for keeping the <a href=\"https://akismet.com/blog/wordpress-comment-system/\">comments section</a> activated, there are times when you may feel it necessary to hit that &#8220;disable&#8221; button. If you&#8217;ve made up your mind, here are four ways to turn off comments in WordPress:</p>\n\n\n\n<img width=\"1999\" height=\"1333\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image11.jpg\" alt=\"man in a maroon sweater looking at a computer screen\" class=\"wp-image-160337\" />\n\n\n\n<h3 class=\"wp-block-heading\">1. Turn off comments in your WordPress settings</h3>\n\n\n\n<p>One way to disable comments site-wide is through the WordPress Discussion settings.</p>\n\n\n\n<p>Here&#8217;s how you do it:</p>\n\n\n\n<ol>\n<li><a href=\"https://jetpack.com/blog/wordpress-admin-dashboard/\">From your WordPress Dashboard</a>, navigate to <strong>Settings → Discussion</strong>.</li>\n\n\n\n<li>In the <strong>Default post settings</strong> section, uncheck the box that says <strong>Allow people to comment on new posts</strong>.</li>\n\n\n\n<li>Scroll down and click <strong>Save Changes</strong>.</li>\n</ol>\n\n\n\n<img width=\"900\" height=\"190\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image9.jpg\" alt=\"discussion settings in WordPress\" class=\"wp-image-160338\" />\n\n\n\n<p>Remember, this setting only applies to future posts. Your old posts will still have comments enabled unless you disable them individually or in bulk, which brings us to our next point.</p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Disable comments on a specific post</h3>\n\n\n\n<p>Maybe you just want to turn off comments for one or a few specific posts. That&#8217;s easy to accomplish as well:</p>\n\n\n\n<ol>\n<li>From the WordPress dashboard, navigate to <strong>Posts</strong> or <strong>Pages</strong> and find the post or page where you want to disable comments.</li>\n\n\n\n<li>Click <strong>Edit</strong> to open the post or page.</li>\n\n\n\n<li>On the right-hand side of the screen, in the <strong>Post</strong> tab, scroll down to <strong>Discussion</strong>.</li>\n\n\n\n<li>Uncheck <strong>Allow comments</strong>.</li>\n\n\n\n<li><strong>Update</strong> or<strong> Publish</strong> the post to save your changes.</li>\n</ol>\n\n\n\n<img width=\"900\" height=\"290\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image6.jpg\" alt=\"comment settings on an individual blog post\" class=\"wp-image-160339\" />\n\n\n\n<p>Or, you can do this from the Post or Pages list. Instead of clicking on the post to open the Block Editor, click <strong>Quick Edit</strong>, uncheck the box that says <strong>Allow Comments.</strong> then click <strong>Save</strong>.</p>\n\n\n\n<img width=\"900\" height=\"379\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image8.jpg\" alt=\"turning off comments for a post\" class=\"wp-image-160340\" />\n\n\n\n<h3 class=\"wp-block-heading\">3. Disable comments in bulk on a group of posts</h3>\n\n\n\n<p>If you need to disable comments on multiple posts, you can do so quickly with the bulk edit feature:</p>\n\n\n\n<ol>\n<li>Go to <strong>Posts</strong> in your WordPress dashboard.</li>\n\n\n\n<li>Check the boxes next to the posts where you want to disable WordPress comments.</li>\n\n\n\n<li>From the <strong>Bulk Actions</strong> drop-down at the top, choose <strong>Edit,</strong> then click <strong>Apply</strong>.</li>\n\n\n\n<li>In the <strong>Bulk Edit</strong> box that appears, find <strong>Comments</strong> and select<strong> Do not allow</strong>.</li>\n\n\n\n<li>Click on the <strong>Update</strong> button to save your changes.</li>\n</ol>\n\n\n\n<img width=\"900\" height=\"426\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image7.jpg\" alt=\"turning off comments on posts in bulk\" class=\"wp-image-160342\" />\n\n\n\n<h3 class=\"wp-block-heading\">4. Turn off comments using custom code</h3>\n\n\n\n<p>If you feel comfortable tinkering with your site&#8217;s code, you can turn off comments by adding a few lines to your theme&#8217;s <em>single.php</em> file. This is the file that controls specifications for your site&#8217;s blog posts.</p>\n\n\n\n<p><em>Note: Before making any changes to your site&#8217;s code, always make a backup. Accidents can happen, and you don&#8217;t want to lose your site&#8217;s data. </em><a href=\"https://jetpack.com/upgrade/backup/\"><em>Jetpack VaultPress Backup</em></a><em> is the ideal solution for this purpose. Finally, it’s important to use a child theme in a staging environment before pushing your changes to your live site.</em></p>\n\n\n\n<p>Once you&#8217;re ready, locate your <em>single.php</em> file and open it in an HTML editor. Find the follow line of code in the file:</p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>&lt;?php comments_template(); ?&gt;</em></code></pre>\n\n\n\n<p>Highlight this bit of code and replace it with the following:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!-- Begin Comment\n\n&lt;?php comments_template(); ?&gt;\n\nEnd Comment --&gt;</code></pre>\n\n\n\n<p>This code will turn off comments for all the posts on your WordPress site (and will even remove existing comments). By using this method, you’re &#8220;commenting out&#8221; the line of code that enables comments on your WordPress site. This turns that line of code into a “note” (such as ones you might make for other developers to reference if they’re troubleshooting your work) instead of a line that would actually be executed. </p>\n\n\n\n<p>Disabling comments in this way is a better solution than simply removing the line of code entirely because you can more easily re-enable comments again in the future.&nbsp;</p>\n\n\n\n<p>You can repeat this process for additional post types, including your site&#8217;s pages.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Alternative solution: Keep comments enabled, but block spam</h3>\n\n\n\n<img width=\"1024\" height=\"930\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image5.png\" alt=\"\" class=\"wp-image-160343\" />\n\n\n\n<p>If you feel hesitant about taking the last-ditch approach to disable comments in WordPress altogether, there <em>is </em>a better solution. Consider keeping comments enabled but blocking spam. It&#8217;s the middle-ground solution that lets you foster community engagement while keeping spam at bay.</p>\n\n\n\n<p>Akismet is your go-to tool for this purpose. Once enabled, it screens every comment and filters out those that look like spam. You&#8217;re left with genuine interaction without the headache of moderating every single comment manually.</p>\n\n\n\n<p>To get started with Akismet, you&#8217;ll first need to install and activate the Akismet plugin. Here&#8217;s a step-by-step guide to get you up and running:</p>\n\n\n\n<ol>\n<li>From your WordPress dashboard, navigate to <strong>Plugins</strong> and then click on <strong>Add New</strong>.</li>\n\n\n\n<li>In the search box, type “Akismet”. It should be the first result that appears.</li>\n\n\n\n<li>Click on the <strong>Install Now</strong> button and then <strong>Activate</strong>.</li>\n</ol>\n\n\n\n<p>Now that the Akismet plugin is activated, you&#8217;ll need to set it up:</p>\n\n\n\n<ol>\n<li>Go to <strong>Settings → Akismet Anti-Spam</strong>.</li>\n\n\n\n<li>You&#8217;ll be asked for your <strong>Akismet API key</strong>. If you don&#8217;t have one, go to the Akismet website, where you can sign up for an account and create a key.</li>\n\n\n\n<li>Once you&#8217;ve got your key, enter it in the API Key field, then click <strong>Save Changes</strong>.</li>\n\n\n\n<li>Akismet is now connected to your WordPress site.</li>\n</ol>\n\n\n\n<img width=\"900\" height=\"510\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image12.jpg\" alt=\"settings for Akismet\" class=\"wp-image-160344\" />\n\n\n\n<p>That&#8217;s it! Akismet is now set up and ready to start blocking spam.</p>\n\n\n\n<p>You can view stats and see how many spam comments Akismet has blocked by visiting the <strong>Akismet Stats</strong> page in your WordPress dashboard.</p>\n\n\n\n<p>Remember, enabling comments doesn&#8217;t have to mean opening the floodgates to spam. With Akismet on guard, you can enjoy the best of both worlds: an engaged community and a spam-free commenting experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to delete past comments in bulk</h2>\n\n\n\n<p>Whether you&#8217;ve decided to disable comments or simply need to clear out old, irrelevant chatter on existing published posts, WordPress provides easy ways to delete all the comments from the past.</p>\n\n\n\n<img width=\"1999\" height=\"1333\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image1.jpg\" alt=\"crumpled up paper by a trash can\" class=\"wp-image-160345\" />\n\n\n\n<p>Let&#8217;s start with handling this task in bulk:</p>\n\n\n\n<ol>\n<li><a href=\"https://jetpack.com/blog/how-to-back-up-your-wordpress-site/\">Create a backup of your WordPress site</a> before making any major changes.</li>\n\n\n\n<li>Navigate to the<strong> Comments </strong>section in your WordPress dashboard.</li>\n\n\n\n<li>By default, all comments are displayed. You can filter them by clicking on the All, Pending, Approved, Spam, or Trash links at the top.</li>\n\n\n\n<li>Once you&#8217;ve chosen the comments you wish to delete, check the box next to Author at the top to select all comments on the page. Alternatively, you can manually select individual comments.</li>\n\n\n\n<li>From the <strong>Bulk Actions </strong>dropdown menu, choose <strong>Move to Trash</strong> and then click <strong>Apply</strong>.</li>\n</ol>\n\n\n\n<p>This will send all selected comments to the trash. If you want to permanently delete these comments:</p>\n\n\n\n<ol>\n<li>Click on the <strong>Trash</strong> link at the top.</li>\n\n\n\n<li>Click the<strong> Empty Trash </strong>button.</li>\n</ol>\n\n\n\n<p>And that’s it. Your selected comments are gone for good.</p>\n\n\n\n<p>The only problem here is that, by default, you can only bulk delete 20 comments at a time. To get around this, click <strong>Screen Options</strong> at the top of the Comments page. Beside “Number of items per page,” change “20” to whatever you’d like and click <strong>Apply.</strong></p>\n\n\n\n<img width=\"958\" height=\"508\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image4.png\" alt=\"selecting the number of posts per page\" class=\"wp-image-160346\" />\n\n\n\n<h2 class=\"wp-block-heading\">How to delete past comments on individual posts</h2>\n\n\n\n<p>If you&#8217;re only interested in pruning comments from specific existing posts, WordPress offers an efficient way to do so. Here&#8217;s how:</p>\n\n\n\n<ol>\n<li>Navigate to <strong>Posts</strong> in your WordPress dashboard.</li>\n\n\n\n<li>Find the post from which you want to remove comments and, in the Comments column, click the number of published comments for that post.</li>\n\n\n\n<li>You&#8217;ll now see a list of all comments for that post. Hover over the comment you want to delete to reveal a menu and click <strong>Trash</strong>.</li>\n\n\n\n<li>If you want to permanently delete this comment, click on the <strong>Trash</strong> link at the top to view all trashed comments. Hover over the comment you just trashed, and click <strong>Delete Permanently</strong>.</li>\n</ol>\n\n\n\n<p>That&#8217;s it! You&#8217;ve successfully learned how to manage and control the comments section on your WordPress site. While it might be tempting to disable comments during tough times, tools like Akismet can make the task a lot easier, ensuring your site remains a place for valuable discussion.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions</h2>\n\n\n\n<p>Having shed light on how to disable comments in WordPress, let&#8217;s now address some frequently asked questions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Why use Akismet instead of disabling comments?</h3>\n\n\n\n<p>Akismet is a powerful spam filtering service that can significantly reduce the time and effort you spend moderating comments. By using Akismet, you can maintain an open forum for your users to engage and interact without the headache of dealing with comment spam.&nbsp;</p>\n\n\n\n<p>This helps foster a sense of community around your content and can also improve your site&#8217;s SEO by encouraging user-generated content. In contrast, disabling comments shuts down these possibilities.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What are other advantages of enabling comments?</h3>\n\n\n\n<p>Enabling comments on your site creates a two-way communication channel between you and your visitors. This can lead to insightful discussions, provide feedback, and generate new ideas for content. Comments also increase the time people spend on your site, which can boost your SEO.</p>\n\n\n\n<img width=\"1999\" height=\"1125\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image10.jpg\" alt=\"black coffee mug next to a laptop\" class=\"wp-image-160347\" />\n\n\n\n<h3 class=\"wp-block-heading\">What should I do if comments are disabled but still showing?</h3>\n\n\n\n<p>If you chose to disable comments in WordPress, but comments are still appearing on your site, it might be that they were posted before you disabled comments. In such a case, you&#8217;ll need to manually delete these comments. You can refer to our sections on how to delete comments in bulk or on individual posts for step-by-step instructions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">How can I disable comments on media files?</h3>\n\n\n\n<p>WordPress treats media files (images, videos, etc.) as separate posts, which means they can have their own comment sections. To disable comments on media files, you&#8217;ll need to do the following:</p>\n\n\n\n<ol>\n<li>Go to <strong>Media → Library</strong> in your WordPress dashboard.</li>\n\n\n\n<li>Click on the media file you want to disable comments for.</li>\n\n\n\n<li>On the right hand side of the screen click <strong>Edit more details</strong>.</li>\n\n\n\n<li>Under the <strong>Discussion</strong> section, uncheck the box that says <strong>Allow comments</strong>. If you don’t see this option, click <strong>Screen Options </strong>at the top and check the box next to <strong>Comments</strong>.&nbsp;</li>\n\n\n\n<li>Click <strong>Update</strong> to save changes.</li>\n</ol>\n\n\n\n<p>Repeat this process for each media file you want to disable comments for.</p>\n\n\n\n<h3 class=\"wp-block-heading\">How can I remove the “Comments Are Closed” message?</h3>\n\n\n\n<p>The &#8220;Comments Are Closed&#8221; message typically appears when comments have been disabled on a post that had comments previously published. One way to remove this is by adding this CSS to your site.</p>\n\n\n\n<p>In your dashboard, go to <strong>Appearance → Additional CSS.</strong> Add this line of code to the bottom:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>.nocomments {\n\n&nbsp;&nbsp;&nbsp;&nbsp;display: none;\n\n}</code></pre>\n\n\n\n<p>Then, click <strong>Publish.</strong>&nbsp;</p>\n\n\n\n<p>This should work for the majority of themes. If, however, your theme uses a different CSS class for the “Comments Are Closed” message, you’ll need to replace “.nocomments” with the correct line.</p>\n\n\n\n<h3 class=\"wp-block-heading\">How can I remove the comment counter on my blog?</h3>\n\n\n\n<p>The comment counter is a feature that comes with many WordPress themes. To remove it, you&#8217;ll need to edit your theme&#8217;s files. Again, back up your site before making any changes.</p>\n\n\n\n<ol>\n<li>Go to <strong>Appearance → Additional CSS</strong>.</li>\n\n\n\n<li>Next, you need to hide the<em> .comments_count class</em>. To do this, paste this code snippet at the bottom:</li>\n</ol>\n\n\n\n<pre class=\"wp-block-code\"><code>.comments-count {\n\n&nbsp;display: none;\n\n}</code></pre>\n\n\n\n<ol start=\"3\">\n<li>Click <strong>Publish</strong> to save your changes.</li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\">Akismet: AI-powered anti-spam for WordPress comments and forms</h2>\n\n\n\n<p>Comments form a vibrant part of any blog or website, sparking discussions, fostering community, and generating valuable user engagement. However, managing spam can turn this asset into a hassle. That&#8217;s why Akismet is such a valuable plugin — it can transform the chore of comment moderation into an automated process.</p>\n\n\n\n<p>Harnessing the power of AI, Akismet helps keep your comments section clean, filtering out spam and allowing genuine interactions to shine. While disabling comments might seem like a tempting quick fix, consider this alternative: a world where your users can freely submit comments to share their thoughts, ideas, and appreciation without you having to worry about an onslaught of spam.</p>\n\n\n\n<p><a href=\"https://akismet.com/pricing/\">Get started with Akismet</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Kathryn Marr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WPTavern: WordPress 6.3 “Lionel” Introduces Command Palette, Expands Pattern Management and Design Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147591\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://wptavern.com/wordpress-6-3-lionel-introduces-command-palette-expands-pattern-management-and-design-tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8466:\"<img width=\"1508\" height=\"1124\" />image credit: <a href=\"https://garystockbridge617.getarchive.net/amp/media/lionel-hamptonnovember-1956-a54db8\">Lionel Hampton.November 1956. Örebro, Sverive</a>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3</a> “Lionel” was released today, named for <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, an American jazz vibraphonist, pianist, percussionist, and bandleader.</p>\n\n\n\n<p>As the last release in Phase 2 of the Gutenberg project, many updates in WordPress 6.3  are targeted at polishing up customization features and the UI that supports them. </p>\n\n\n\n<p>Content, templates, and patterns can now be <a href=\"https://github.com/WordPress/gutenberg/issues/44461\">edited together</a>, without the user having to leave the Site Editor. This streamlines the workflow across templates and content, making it easier to build out a website with live previews. Users can now <a href=\"https://github.com/WordPress/gutenberg/pull/50565\">create new pages</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/50565\">view page details in the sidebar</a>, an experience that is very similar to editing a page in the block editor except that it keeps the process inside the flow of design editing.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nvideo credit:&nbsp;<a href=\"https://make.wordpress.org/core/2023/06/14/whats-new-in-gutenberg-16-0-14-june/\">Gutenberg 16.0 release post</a>\n\n\n\n<h3 class=\"wp-block-heading\">Pattern Management Expands to Include Creating and Syncing Patterns</h3>\n\n\n\n<p>Pattern management was a major focus of the 6.3 release. Users can now arrange blocks to create their own patterns and save them to a library where they can be searched and edited. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1600\" height=\"922\" />Changes to Patterns –&nbsp;<a href=\"https://make.wordpress.org/core/2023/07/14/whats-new-in-gutenberg-16-2-12-july/\">Gutenberg 16.2 release post</a>\n\n\n\n<p>Reusable blocks have been <a href=\"https://wptavern.com/reusable-blocks-renamed-to-patterns-with-synced-and-non-synced-options\">renamed to synced patterns</a> but still function the same way. They can be created and edited in the block editor and then inserted into posts or pages with the edits synced. Block patterns, once inserted, can be edited and are not synced across other instances. </p>\n\n\n\n<p>The difference between synced and non-synced patterns is shown in the&nbsp;<a href=\"https://github.com/WordPress/gutenberg/pull/51954\">sync status details section</a>&nbsp;within the pattern sidebar navigation screen. <a href=\"https://github.com/WordPress/gutenberg/pull/51990\">A new lock icon</a>&nbsp;designates theme patterns as unable to be edited or modified.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"874\" height=\"577\" />image credit:&nbsp;<a href=\"https://github.com/WordPress/gutenberg/pull/51990\">Gutenberg PR #51990</a>\n\n\n\n<h3 class=\"wp-block-heading\">New Command Palette Tool Enables Quick Search and Command Execution</h3>\n\n\n\n<p>WordPress 6.3 <a href=\"https://wptavern.com/wordpress-6-3-will-introduce-a-command-palette\">introduces a new Command Palette</a> that was designed to be an extensible quick search and command execution tool. Users can do things like navigate to a page or post, add new content or a template, and toggle UI elements and editor preferences, among other things. It can be activated by using keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows) or by clicking the sidebar search icon in Site View, or clicking the Title Bar.</p>\n\n\n\n<p>Contributors are considering <a href=\"https://github.com/WordPress/gutenberg/issues/53299\">adding support for WP-CLI commands</a> in future iterations. The Command Palette is <a href=\"https://github.com/WordPress/gutenberg/pull/51169\">launching with a public API</a> so developers can explore extending it to add their own commands.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"500\" height=\"500\" />image source: WordPress 6.3 About Page\n\n\n\n<h3 class=\"wp-block-heading\">WordPress&#8217; Design Tools Updated to Include More Customization Capabilities</h3>\n\n\n\n<p>This release significantly expands the capabilities of existing design tools to make it easier to customize the finer details. Users can now design their own caption styles through the Styles interface without writing any CSS. Duotone filters are now available to be managed in Styles for blocks that support them and there is an option to disable them entirely. The Cover block&#8217;s settings capabilities have been expanded to include text color, layout controls, and border options.</p>\n\n\n\n<p>A few other notable new features and improvements in WordPress 6.3 include the following: </p>\n\n\n\n<ul>\n<li>Style revisions in the Site Editor let users revert to previous versions of the design</li>\n\n\n\n<li>New Footnotes block automatically links annotations throughout the content</li>\n\n\n\n<li>New Details block allows users to easily show or hide content </li>\n\n\n\n<li>Preview block themes before activating</li>\n\n\n\n<li>Set aspect ratio on images</li>\n\n\n\n<li>Distraction-free mode now available in the Site Editor</li>\n\n\n\n<li>Revamped top toolbar</li>\n\n\n\n<li>Improvements to List View&#8217;s drag-and-drop functionality</li>\n\n\n\n<li>New modal for building templates with patterns</li>\n\n\n\n<li>Failed update safeguards</li>\n\n\n\n<li>Minimum supported version of PHP updated to 7.0.0</li>\n\n\n\n<li>50+ accessibility improvements for labeling, tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor </li>\n</ul>\n\n\n\n<p>This release also brings more than 170 performance improvements and is significantly faster than previous versions.</p>\n\n\n\n<p>&#8220;Based on the <a href=\"https://docs.google.com/spreadsheets/d/1UMBN8H9r5ad5NPb81N3cx1bfAvhVDnd2UKpVU1FVgjc/edit\">performance benchmarks conducted</a> for RC3, <strong>WordPress 6.3 loads 24% faster for block themes and 18% faster for classic themes</strong>, compared to WordPress 6.2, based on the <a href=\"https://web.dev/lcp/\">Largest Contentful Paint (LCP)</a> metric,&#8221; Google-sponsored contributor Felix Arntz said in a <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">summary</a> on the improvements. &#8220;For WordPress 6.2, those improvements amounted to 18% and 5% respectively, so it is fair to summarize that WordPress 6.3 is a major achievement in terms of performance. &#8220;</p>\n\n\n\n<p>The most notable performance gains came from the introduction of defer and async support for the Scripts API and fetchpriority support for images, along with optimization of the <code>emoji-loader.js</code> script.</p>\n\n\n\n<p>WordPress 6.3 is the result of the efforts of more than 650 contributors across 52 countries, with ~32% of them (205) being first-time contributors. </p>\n\n\n\n<p>After updating to WordPress 6.3, users may notice a new &#8220;Get Involved&#8221; tab on the About page, designed to help new contributors find their place in the WordPress project. This addition closes a 10-year old <a href=\"https://core.trac.wordpress.org/ticket/23348\">ticket</a> that suggested adding a “Contribute” tab to the About page. It features both code-based and no-code contribution opportunities with a link to a new <a href=\"https://make.wordpress.org/contribute/\">WordPress.org/contributor</a> page.  This page debuts a new interactive tool that helps visitors find contributor teams that might be a good fit for their interests and capabilities.</p>\n\n\n\n<p>&#8220;As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience,&#8221; WordPress 6.3 release lead Matías Ventura said.</p>\n\n\n\n<p>For more details on all the changes included under the hood in this release, check out the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">documentation for 6.3</a>, the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a>, and <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-3/\">6.3-related developer notes</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 21:29:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WordPress.org blog: WordPress 6.3 “Lionel”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15718\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2023/08/lionel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:64206:\"<img width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-15794\" />\n\n\n\n<p>Say hello to WordPress 6.3 “Lionel,” named after <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, the celebrated American jazz artist. A prolific jazz vibraphonist, pianist, and percussionist, Hampton gained notoriety working in harmony with greats from <a href=\"https://en.wikipedia.org/wiki/Charles_Mingus\">Charles Mingus</a> to <a href=\"https://en.wikipedia.org/wiki/Quincy_Jones\">Quincy Jones</a> and as bandleader of the eponymous Lionel Hampton Orchestra. His artistry and charitable work have been recognized with a Grammy, a star on the Hollywood Walk of Fame, and the National Medal of Arts.</p>\n\n\n\n<p>Be sure to turn up the volume of the <a href=\"https://www.youtube.com/channel/UCpfWWFslWSapwL_q16AboSg/featured\">musical stylings</a> of Lionel Hampton as you discover all “Lionel” has to offer.</p>\n\n\n\n<p>With “Lionel” you can create beautiful and compelling websites more efficiently than ever. Whether you want to build an entire site without coding or are a developer looking to customize every detail, WordPress 6.3 has something to pique your interest. As you unpack and explore this latest release, you will discover updated functions and navigation designed to help you work and create with less effort, design tools that give you more control over layout, and added functionality enriching the site-building experience.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">&#8220;Lionel&#8221; marks a major chapter in the evolution of WordPress as a tool for expression. It’s the culmination of years of work from hundreds of contributors, bringing a more powerful and cohesive editing experience for crafting websites with blocks. It continues the quest of making web publishing approachable for everyone—so it’s also just a new beginning!</p>\n<cite>Matías Ventura, WordPress 6.3 Release Lead</cite></blockquote>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.3.zip\">Download WordPress 6.3 &#8220;Lionel&#8221; today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<p>This momentous release opens new possibilities for the creative expression of designers, creators, and builders. Powerful tools and refined controls give users confidence and allow them to easily manage their sites.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Do everything in the Site Editor</h3>\n\n\n\n<p>WordPress 6.3 brings your content, templates, and patterns together in the Site Editor for the first time. Add pages, browse style variations, create synced patterns, and enjoy fine-tuned control over navigation menus. Spend less time switching across different site areas—so you can focus on what matters most. Creation to completion, all in one place.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&ssl=1\" alt=\"Image titled: \" /><em>Do everything in the Site Editor</em>\n\n\n\n<h3 class=\"wp-block-heading\">Preview Block themes</h3>\n\n\n\n<p>Experience block themes before you switch and preview the Site Editor, with options to customize directly before committing to a new theme.&nbsp;</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&ssl=1\" alt=\"Image about previewing block themes titled Previewing Themes depicting \" /><em>Preview a new block theme before you switch and commit</em>\n\n\n\n<h3 class=\"wp-block-heading\">Create and sync patterns</h3>\n\n\n\n<p>Arrange blocks and save them to the ‘My Patterns’ section for use throughout your site. You can even specify whether to sync your patterns (previously referred to as “Reusable blocks”) so that one change applies to all parts of your site. Or, utilize patterns as a starting point with the ability to customize each instance.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&ssl=1\" alt=\"Image showing the new My Patterns section in the CMS.\" class=\"wp-image-15768\" /><em>My patterns: All your patterns in one place</em>\n\n\n\n<h3 class=\"wp-block-heading\">Work faster with the Command Palette</h3>\n\n\n\n<p>Switch to a specific template or open your editor preferences with a new tool that helps you quickly access expanded functionality. With simple keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows), clicking the sidebar search icon in Site View, or clicking the Title Bar, get where you need to go and do what you need to do in seconds.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&ssl=1\" alt=\"Image depicting the new Command Palette\" class=\"wp-image-15763\" /><em>Get to know the new Command Palette </em>\n\n\n\n<h3 class=\"wp-block-heading\">Sharpen your designs with new tools</h3>\n\n\n\n<p>New design controls bring more versatility for fine-tuning, starting with the ability to customize your captions from the Styles interface without coding. You can manage your duotone filters in Styles for supported blocks and pick from the options provided by your theme or disable them entirely. The Cover block gets added settings for text color, layout controls, and border options, making this powerful block even more handy.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&ssl=1\" alt=\"Image representing the new design tools in the Site Editor\" class=\"wp-image-15764\" /><em>New design tools</em>\n\n\n\n<h3 class=\"wp-block-heading\">Track design changes with Style revisions</h3>\n\n\n\n<p>With a new audit trail, you can now see how your site looked at a specific time. Visualize these revisions in a timeline and access a one-click option to restore prior styles.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&ssl=1\" alt=\"Image titled \" /><em>Style revisions: See your style revision history </em>\n\n\n\n<h3 class=\"wp-block-heading\">Annotate with the Footnotes block</h3>\n\n\n\n<p>Footnotes add convenient annotations throughout your content. Now you can add and link footnotes for any paragraph.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&ssl=1\" alt=\"Image depicting the new Footnotes Block\" class=\"wp-image-15766\" /><em>Add footnotes effortlessly with the new Footnotes Block</em>\n\n\n\n<h3 class=\"wp-block-heading\">Show or hide content with the Details block</h3>\n\n\n\n<p>Use the Details block to avoid spoiling a surprise, create an interactive Q&amp;A section, or hide a long paragraph under a heading.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&ssl=1\" alt=\"Image depicting the new Details Block\" class=\"wp-image-15765\" /><em>Display or hide content with the new Details Block</em>\n\n\n\n<h3 class=\"wp-block-heading\">Performance gets a boost</h3>\n\n\n\n<p>WordPress 6.3 has <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">170+ performance updates</a>, including defer and async support for the Scripts API and fetchpriority support for images. These improvements, along with block template resolution, image lazy-loading, and the emoji loader, can dramatically improve your website’s perceived load time.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility remains a core focus</h3>\n\n\n\n<p>Incorporating more than 50 accessibility improvements across the platform, WordPress 6.3 is more accessible than ever. Improved labeling, optimized tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor allow those using assistive technologies to navigate more easily.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other highlights</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Set aspect ratio on images</h4>\n\n\n\n<p>Specify your aspect ratios and ensure design integrity, especially when using images in patterns.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build your site distraction-free</h4>\n\n\n\n<p>Distraction-free designing is now available in the Site Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Rediscover the Top Toolbar</h4>\n\n\n\n<p>A revamped Top Toolbar offers parent selectors for nested blocks, options when selecting multiple blocks, and an interface embedded into the title bar with new functionality in mind.</p>\n\n\n\n<h4 class=\"wp-block-heading\">List View improvements</h4>\n\n\n\n<p>Drag and drop to every content layer and delete any block you would like in the updated List View.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build templates with Patterns</h4>\n\n\n\n<p>Create unique patterns to jumpstart template creation with a new modal enabling access to pattern selection.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Changes in PHP support</h4>\n\n\n\n<p>Support for PHP 5 is discontinued. The&nbsp;new minimum supported version&nbsp;of PHP is 7.0.0.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Failed update safeguards</h4>\n\n\n\n<p>WordPress will now auto-restore the previously installed version of plugins or themes if something goes wrong during a failed manual update.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress and 6.3</h2>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/tutorials/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other resources to level up your knowledge of the latest features in WordPress.&nbsp;</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">6.3 release notes</a> for additional technical details about this release, including feature recaps, installation information, file changes, fixes, and updates.</p>\n\n\n\n<p>Read and subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> for even more helpful WordPress content.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is a global software platform</h2>\n\n\n\n<p><a href=\"https://translate.wordpress.org/stats/\">61 locales have translated 90 percent</a> or more of WordPress 6.3 into their language. Community translators are working hard to ensure more translations are on their way. Thank you, gracias, ありがとう, धन्यवाद, and ευχαριστώ to everyone who helps to make WordPress available in 200 languages.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributing to WordPress</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and <a href=\"https://opensource.org/osd-annotated\">the freedoms that come with open source</a>. Supporting this idea is a large community of people collaborating to strengthen the software. A big thank you to everyone who makes WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">Our community of contributors has always been what makes WordPress wonderful. You are what makes sure our project continues to thrive, and our software remains secure, usable, and impactful. Thank you so much for joining together to make the web (and the world) a better place!</p>\n<cite>Josepha Haden Chomphosy, Executive Director, WordPress.org</cite></blockquote>\n\n\n\n<p>WordPress 6.3 arrives thanks to more than 650 contributors&#8217; collective passion and effort in at least 52 countries. This release also includes over 205 first-time contributors!&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">The 6.3 release squad</h3>\n\n\n\n<p>The 6.3 release was led from start to launch by an active set of contributors from across many disciplines. Over several weeks, they kept the release on track and moving forward by connecting ideas, resolving issues, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Editor Tech Leads:&nbsp; <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon Dodd</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Glecker</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a>, <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a></li>\n\n\n\n<li>Marketing &amp; Communications Leads: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Performance Leads: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">6.3 contributors</h3>\n\n\n\n<p>Complimenting the release squad is a diverse group of contributors whose global collaboration delivered hundreds of enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress community.&nbsp;</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/zgrkaralar/\">&#214;zg&#252;r KARALAR</a> · <a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/softwortech/\">Abhishek Sharma</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/awarner20/\">Adam W. Warner</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adi3890/\">Aditya Jain</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ahsannayem/\">Ahsan Chowdhury</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akmelias/\">akmelias</a> · <a href=\"https://profiles.wordpress.org/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a> · <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrelara/\">Alexandre Lara</a> · <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/akrocks/\">Amaan Khan</a> · <a href=\"https://profiles.wordpress.org/amansurov/\">amansurov</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/sabreuse/\">Amy Hendrix (sabreuse)</a> · <a href=\"https://profiles.wordpress.org/anatoliyav/\">Anatoliy</a> · <a href=\"https://profiles.wordpress.org/anatolikkk/\">Anatoliy Dovgun</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/andizer/\">Andy</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/anilvaza/\">Anil Vaza</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">Ankur Chotai</a> · <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/annziel/\">annziel</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/anver/\">anver</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/ideag/\">Arunas Liuiza</a> · <a href=\"https://profiles.wordpress.org/iamasadpolash/\">Asad Polash</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashikurwp/\">Ashikur Rahman</a> · <a href=\"https://profiles.wordpress.org/nant82/\">Atanas Antonov</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azizantoun/\">azizantoun</a> · <a href=\"https://profiles.wordpress.org/aznadesign/\">Aznadesign</a> · <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a> · <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benjibee/\">benjibee</a> · <a href=\"https://profiles.wordpress.org/benlk/\">benlk</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bitnissen/\">bitnissen</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/wpe_bdurette/\">Brandon DuRette</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> · <a href=\"https://profiles.wordpress.org/brasofilo/\">brasofilo</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/fischfood/\">Brian Fischer</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke Kaminski</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/caraffande/\">caraffande</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> · <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/mrflannagan/\">Chris Flannagan</a> · <a href=\"https://profiles.wordpress.org/clubkert/\">Chris Lubkert</a> · <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Crixu</a> · <a href=\"https://profiles.wordpress.org/crs1138/\">crs1138</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/cshark/\">cshark</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dbernar1/\">Dan Bernardic</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/danyk4/\">danyk4</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidmusnik/\">davidmusnik</a> · <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/wtranch/\">Delete My Account</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densityapps/\">densityapps</a> · <a href=\"https://profiles.wordpress.org/sccr410/\">Derek Ashauer</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> · <a href=\"https://profiles.wordpress.org/digtek/\">DigTek</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dimijazz/\">dimijazz</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doems/\">doems</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/dsar/\">dsar</a> · <a href=\"https://profiles.wordpress.org/dustyreagan/\">dustyreagan</a> · <a href=\"https://profiles.wordpress.org/ebai4/\">ebai4</a> · <a href=\"https://profiles.wordpress.org/ecorica/\">ecorica</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/wpnook/\">Edward</a> · <a href=\"https://profiles.wordpress.org/worldomonation/\">Edwin Takahashi</a> · <a href=\"https://profiles.wordpress.org/ehsanakhgari/\">ehsanakhgari</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/eric7186/\">eric.7186</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/ernest35/\">Ernest Behinov</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a> · <a href=\"https://profiles.wordpress.org/franrosa/\">franrosa</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">gaeldenysiak</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan (a11n)</a> · <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a> · <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/wtower/\">George</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gilles66/\">gilles66</a> · <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/grandslambert/\">GrandSlambert</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a> · <a href=\"https://profiles.wordpress.org/gudmdharalds/\">Gudmundur Haraldsson</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">hbhalodia</a> · <a href=\"https://profiles.wordpress.org/heiko_mamerow/\">Heiko Mamerow</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/hrdelwar/\">hrdelwar</a> · <a href=\"https://profiles.wordpress.org/hrrarya/\">Hridoy Mozumder</a> · <a href=\"https://profiles.wordpress.org/hugobaeta/\">Hugo Baeta</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hberberoglu/\">Huseyin Berberoglu</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ibrahimmonir/\">Ibrahim Khalil</a> · <a href=\"https://profiles.wordpress.org/shuvoaftab/\">Ibrahim Sharif</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/intoxination/\">intoxination</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/jacknotman/\">jacknotman</a> · <a href=\"https://profiles.wordpress.org/jahidcse/\">Jahid Hasan</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> · <a href=\"https://profiles.wordpress.org/janboddez/\">Jan Boddez</a> · <a href=\"https://profiles.wordpress.org/jane/\">jane</a> · <a href=\"https://profiles.wordpress.org/jankyz/\">jankyz</a> · <a href=\"https://profiles.wordpress.org/janpaulkleijn/\">janpaulkleijn</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jbcouton/\">jbcouton</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffmora/\">jeffmora</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/jhnstn/\">jhnstn</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/jomonthomaslobo1/\">jomonthomaslobo1</a> · <a href=\"https://profiles.wordpress.org/akbigdog/\">Jon Bourne</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkil&#228;</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josepmoran/\">Josep Mor&#225;n</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jqz/\">jqz</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juzar/\">Juzar</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kamplugins/\">Kausar Al Mamun</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kenwins/\">kenwins</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/koenschipper/\">koenschipper</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kutsu/\">kutsu</a> · <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a> · <a href=\"https://profiles.wordpress.org/leamcaleese/\">L&#233;a McAleese</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/laurentmagnin/\">laurentmagnin</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a> · <a href=\"https://profiles.wordpress.org/lessbloat/\">lessbloat</a> · <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a> · <a href=\"https://profiles.wordpress.org/wplindavantol/\">Linda van Tol</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lowlydev/\">lowlydev</a> · <a href=\"https://profiles.wordpress.org/lphoumpakka/\">lphk</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mehdi01/\">Mahdi Hasan</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/majaloncar/\">Maja Loncar</a> · <a href=\"https://profiles.wordpress.org/malae/\">Malae</a> · <a href=\"https://profiles.wordpress.org/malavvasita/\">Malav Vasita</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/maniu/\">maniu</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/marcguay/\">MarcGuay</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/marianne38/\">marianne38</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a> · <a href=\"https://profiles.wordpress.org/markdoliner/\">markdoliner</a> · <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">masteradhoc</a> · <a href=\"https://profiles.wordpress.org/mastrup/\">mastrup</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matmoe/\">matmoe</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/matt_fw/\">matt_fw</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maxcgparis/\">maxcgparis</a> · <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcalyster/\">McAlyster</a> · <a href=\"https://profiles.wordpress.org/mcliwanow/\">mcliwanow</a> · <a href=\"https://profiles.wordpress.org/mahamudur78/\">Md Mahamudur Rahaman</a> · <a href=\"https://profiles.wordpress.org/fencermonir/\">Md Monir Hossain</a> · <a href=\"https://profiles.wordpress.org/shuvo247/\">MD Shakibul Islam</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mikeday/\">Michael Day</a> · <a href=\"https://profiles.wordpress.org/michaelh/\">MichaelH</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikecho/\">mikecho</a> · <a href=\"https://profiles.wordpress.org/mikeyzm/\">mikeyzm</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> · <a href=\"https://profiles.wordpress.org/studionashvegas/\">Mitch Canter</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/mitchoyoshitaka/\">mitcho (Michael Yoshitaka Erlewine)</a> · <a href=\"https://profiles.wordpress.org/moinrrahmed/\">Moe</a> · <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a> · <a href=\"https://profiles.wordpress.org/mohanrajp/\">Mohan Raj</a> · <a href=\"https://profiles.wordpress.org/patelmohip/\">Mohip Patel</a> · <a href=\"https://profiles.wordpress.org/mohiuddinomran/\">Mohiuddin Omran</a> · <a href=\"https://profiles.wordpress.org/boemedia/\">Monique Dubbelman</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a> · <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> · <a href=\"https://profiles.wordpress.org/mtxz/\">mtxz</a> · <a href=\"https://profiles.wordpress.org/thisisyeasin/\">Muhammad Yeasin</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">nadimcse</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/tushar284/\">Nahid Hasan</a> · <a href=\"https://profiles.wordpress.org/narthur/\">Narthur</a> · <a href=\"https://profiles.wordpress.org/nataliat2004/\">nataliat2004</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/nazmulhudadev/\">Nazmul Huda</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nickpap/\">nickpap</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/njsamsatli/\">njsamsatli</a> · <a href=\"https://profiles.wordpress.org/nkeller15/\">nkeller15</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/orestissam/\">Orestis Samaras</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patriciahillebrandt/\">patriciahillebrandt</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/strategio/\">Pierre Sylvestre</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/piyushtekwani/\">Piyush Tekwani</a> · <a href=\"https://profiles.wordpress.org/pkbhatt/\">pkbhatt</a> · <a href=\"https://profiles.wordpress.org/platonkristinin/\">Platon Kristinin</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a> · <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> · <a href=\"https://profiles.wordpress.org/prashantvatsh/\">Prashant Singh</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prikari/\">Priyanka Adhikari</a> · <a href=\"https://profiles.wordpress.org/przemekhernik/\">Przemek Hernik</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/bi0xid/\">Rafa Poveda</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ratneshsonar/\">Ratnesh Sonar</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rembem/\">rembem</a> · <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a> · <a href=\"https://profiles.wordpress.org/richiecarey/\">Richie Carey</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/rob1n/\">rob1n</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a> · <a href=\"https://profiles.wordpress.org/algorithmsunlocks/\">Ruman Ahmed</a> · <a href=\"https://profiles.wordpress.org/rutviksavsani/\">Rutvik Savsani</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">S&#233; Reed</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/suleymankenar/\">S&#252;leyman Kenar</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/samnajian/\">SamNajian</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarequl/\">Sarequl Basar</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sdavis2702/\">Sean Davis</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/enchiridion/\">Shannon Little</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreyasikhar26/\">Shreyas Ikhar</a> · <a href=\"https://profiles.wordpress.org/shubhamsedani/\">shubhamsedani</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/shvv/\">shvv</a> · <a href=\"https://profiles.wordpress.org/shwetabathani2312/\">Shweta Bathani</a> · <a href=\"https://profiles.wordpress.org/siddhantwadhwani/\">Siddhant Wadhwani</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth ravikumar</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/simonemanfre/\">Simone</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirajummahdi/\">Sirajum Mahdi</a> · <a href=\"https://profiles.wordpress.org/sboerrigter/\">Sjoerd Boerrigter</a> · <a href=\"https://profiles.wordpress.org/sjoerdlinders/\">Sjoerd Linders</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">skorasaurus</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/enderandpeter/\">Spencer</a> · <a href=\"https://profiles.wordpress.org/sque/\">sque</a> · <a href=\"https://profiles.wordpress.org/srikanthmeenakshi/\">srikanthmeenakshi</a> · <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/vanaf1979/\">Stephan Nijman</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/suzettefranck/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/mt_suzette/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/nuhel/\">Syed Nuhel</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/thakordarshil/\">Thakor Darshil</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/thunderdw/\">thunder rumbles</a> · <a href=\"https://profiles.wordpress.org/tijmensmit/\">Tijmen Smit</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/tb1909/\">Tim Brath&#228;rig</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/r0uter/\">tonythomas01</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/scep/\">Tryon</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/tyb/\">TyB</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshmcakadi/\">Umesh Patel</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/uxtremist/\">uxtremist</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/valterlorran/\">valterlorran</a> · <a href=\"https://profiles.wordpress.org/vasilism/\">Vasilis Manthos</a> · <a href=\"https://profiles.wordpress.org/victoranto/\">victoranto</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wlindley/\">wlindley</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">wplmillet</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xmarcos/\">xmarcos</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani Iliev</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zdrobau/\">Zdrobau</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress support forums</h3>\n\n\n\n<p>Many thanks to the community volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved today</h3>\n\n\n\n<p>If contributing to WordPress appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and explore the product roadmap on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>. You can also use this <a href=\"https://make.wordpress.org/contribute/\">interactive tool</a> to help you decide which team is right for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking toward the future</h2>\n\n\n\n<p>20 years ago this past May, <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">WordPress shipped the very first version, 0.7</a>. What started with a blog post from co-founder Matt Mullenweg and a subsequent comment by co-founder Mike Little eventually evolved into the world’s most popular web publishing platform.</p>\n\n\n\n<p>WordPress software continues to evolve and iterate based on the needs and desires of its robust and diverse user community. This release is the capstone of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a> along the WordPress <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>. As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">6.3 Haiku</h2>\n\n\n\n<p>A capstone release<br />Ships tools for building great sites<br />Collaboration</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 20:03:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matias Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Do The Woo Community: A Look at Weglot, the Product and the Company, with Thomas Fanchin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75815\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://dothewoo.io/a-look-at-weglot-the-product-and-the-company-with-thomas-fanchin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:455:\"<p>Thomas Fanchin, Weglot\'s partnership manager, discusses their involvement in WordPress, partnerships, and community engagement.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-look-at-weglot-the-product-and-the-company-with-thomas-fanchin/\">A Look at Weglot, the Product and the Company, with Thomas Fanchin</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 09:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"WPTavern: ConvertKit Updates WordPress Plugin, Adds Members Only Content, Newsletter Feed, and Product Embeds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147547\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://wptavern.com/covertkit-updates-wordpress-plugin-adds-members-only-content-newsletter-feed-and-product-embeds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2808:\"<p><a href=\"https://convertkit.com/\">ConvertKit</a> has updated its <a href=\"https://wordpress.org/plugins/convertkit/\">official WordPress plugin</a> and <a href=\"https://wordpress.org/plugins/convertkit-for-woocommerce/#description\">WooCommerce add-on</a> to support a range of new features. More than 40,000 sites use ConvertKit&#8217;s plugin to integrate their newsletters, email campaigns, and digital products with WordPress. The service is <a href=\"https://convertkit.com/pricing\">free for the user&#8217;s first 1,000 subscribers</a> but offers more automated features and third party integration on its paid tiers.</p>\n\n\n\n<p>The latest version of the ConvertKit plugin for WordPress brings the &#8220;Members Content&#8221; feature out of beta. It allows site owners to set up gated content for things like courses, e-books, or curated content without having to switch platforms, keeping members on the WordPress site.</p>\n\n\n\n<p>In the WordPress admin, under the ConvertKit >> Member Content settings, admins can now specify a <a rel=\"noreferrer noopener\" href=\"https://help.convertkit.com/en/articles/4199330-convertkit-commerce-creating-a-product\" target=\"_blank\">ConvertKit Commerce product</a> to be required in order to view a post, page, or WooCommerce product page.</p>\n\n\n\n<img width=\"895\" height=\"700\" />WordPress content gated by ConvertKit subscription &#8211; image source: <a href=\"https://help.convertkit.com/en/articles/7896769-how-to-customize-your-convertkit-subscribers-experience-on-your-wordpress-website\">ConvertKit documentation</a>\n\n\n\n<p>This update also adds a &#8220;Newsletter feed&#8221; that ConvertKit users can embed on their WordPress sites to display a paginated list of their public broadcast emails. It can be shown as a grid with images and descriptions or a list with subject and date.</p>\n\n\n\n<p>Recent updates to the plugin also introduce product embeds, allowing site owners to create a storefront of their ConvertKit products on their WordPress sites. The styles for the embedded products can be edited inside the Site Editor.</p>\n\n\n\n<p>Other notable improvements in this round of updates include the following: </p>\n\n\n\n<ul>\n<li>The WooCommerce add-on for ConvertKit has been updated to map customer first and last names to ConvertKit custom fields</li>\n\n\n\n<li>New &#8220;Form Trigger Block&#8221; creates a button that triggers a pop-up modal </li>\n\n\n\n<li>PHP SDK now available for building on top of the ConvertKit API</li>\n</ul>\n\n\n\n<p>More detailed information on the settings for the new features is available in the ConvertKit documentation on <a href=\"https://help.convertkit.com/en/articles/7896769-how-to-customize-your-convertkit-subscribers-experience-on-your-wordpress-website\">customizing subscribers&#8217; experience on WordPress websites</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 02:58:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: The First Learn WordPress Course Cohort Will Teach Participants How to Develop Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147549\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/the-first-learn-wordpress-course-cohort-will-teach-participants-how-to-develop-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2101:\"<p>WordPress&#8217; Training Team is <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">launching</a> its first Learn WordPress Course Cohort, which is a social learning method where a group of people go through the learning process together with some synchronous group activities. One of the benefits of cohorts is the sense of community and connection that can develop between the participants, fostering more support and collaboration.</p>\n\n\n\n<p>The first course cohort topic is &#8220;Developing your first WordPress Block,&#8221; aimed at first-time block developers who have never built a block before. It lasts six weeks and covers the following topics: </p>\n\n\n\n<ul>\n<li>Week 1: Introduction, preparing your environment for block development.</li>\n\n\n\n<li>Week 2: Using create-block to scaffold your first block, Internationalisation.&nbsp;</li>\n\n\n\n<li>Week 3: Block styling, block supports, block controls</li>\n\n\n\n<li>Week 4: Block attributes, block components&nbsp;</li>\n\n\n\n<li>Week 5: Interacting with WordPress data</li>\n\n\n\n<li>Week 6: Dynamic blocks</li>\n</ul>\n\n\n\n<p>The cohort is limited to 14 participants who will be selected at random if they meet the requirements. These include a WordPress.org profile, a Make Slack account, and availability every Wednesday at 8:00 UTC for the duration of the course.</p>\n\n\n\n<p>A course on beginning block development is likely to be very popular, so the Training team has committed to maintaining a waiting list for any applications that are not selected in the first round. This is a remarkable opportunity for any developer who has not yet experimented with building blocks but thrives in a more social learning environment.  Future cohort courses on the same topic will be scheduled after this one is complete.</p>\n\n\n\n<p>The deadline to <a href=\"https://learnwordpress.survey.fm/developing-your-first-wordpress-block-course-cohort-sign-up\">apply to the very first Learn WordPress course cohort</a> is August 20, 2023, and the course will run from  September 4th to October 9th, 2023.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Aug 2023 20:02:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"Gutenberg Times: Big Changes coming, Hallway Hangout, new course cohort and building custom design tools—Weekend Edition 264\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25117\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:133:\"https://gutenbergtimes.com/big-changes-coming-hallway-hangout-new-course-cohort-and-building-custom-design-tools-weekend-edition-264/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17242:\"<p>Howdy, </p>\n\n\n\n<p>I&#8217;ll be on vacation for the next two weeks and during that time, I will stay away from the computer or phone as much as possible. Really disconnect from the net. I&#8217;ll let you know how that went when I&#8217;ll get back ? </p>\n\n\n\n<p>While I am gone, WordPress 6.3 will come out next week, and I hope my efforts to  share all that information prepared you, your clients, and teammates well for the next major release.</p>\n\n\n\n<p>In case you missed it, the comments on this post by Josepha Haden Chomphosy  <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a> will be open until August 15, 2023. &#8220;<em>Adding your&nbsp;ticket&nbsp;here won’t necessarily guarantee inclusion. But no one can fix things they can’t see, so bravely share your thoughts!</em>&#8221; </p>\n\n\n\n<p>So I am almost out the door! Be well! </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n<p>PS: I might share some photos on <a href=\"https://www.instagram.com/idx/\">Instagram @idx </a></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-upcoming-word-press-events\">Upcoming WordPress Events</a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Doc Pop</strong> interviewed <strong>Justin Tadlock</strong> on the podcast <em>Press This:</em><strong> <a href=\"https://torquemag.io/2023/08/press-this-wordpress-6-3/\">Big Changes Coming to WordPress 6.3</a></strong>. They discussed the upcoming WordPress 6.3 release, which marks the end of Phase Two of Gutenberg development. </p>\n\n\n\n<p>As some of you already know, the features in WordPress 6.3 include a revamped site editor interface with better navigation and stylebook support, making it easier for non-coders to customize their sites visually. </p>\n\n\n\n<p>A new Command Palette is introduced, enabling users to quickly access various functions in Gutenberg. There are also performance improvements, such as fetch priority support for images and updates to the cache and file system API.</p>\n\n\n\n<a href=\"https://wordpress.org/news/category/releases/\"><img /></a>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-accent-color has-alpha-channel-opacity has-accent-background-color has-background is-style-wide\" />\n\n\n\n<p><strong>Joen Assmussen</strong> collected all the great work of the WordPress design team in his latest <a href=\"https://make.wordpress.org/design/2023/07/31/design-share-jul-3-jul-28/\">Design Share: Jul 3-Jul 28</a>, among those</p>\n\n\n\n<ul>\n<li>Search views and a Meta search for Openverse</li>\n\n\n\n<li>Refined revamp of the showcase pages with additional filter component on WordPress.org </li>\n\n\n\n<li>Assemble a WordPress Design Library for various teams to use</li>\n\n\n\n<li>Details page for Template parts</li>\n\n\n\n<li>Improved Confirm dialog modals, and</li>\n\n\n\n<li>Lots of design work for the new pattern screens in the Site Editor</li>\n</ul>\n\n\n\n<a href=\"https://make.wordpress.org/design/2023/07/31/design-share-jul-3-jul-28/\"><img /></a>Screenshot of Showcase redesign\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/\">Gutenberg Changelog #87 – Patterns, Gutenberg 16.3 and WordPress 6.3.</a> with Anne McCarthy as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><br />In his latest video, <strong>Dustin Hartzler</strong> wants you to <a href=\"https://www.youtube.com/watch?v=p9Tz-QErKXQ\"><strong>Master Text Formatting in WordPress Block Editor</strong></a>. </p>\n\n\n\n<ul>\n<li>? Learn the basics of bold, italics, and underlining to add emphasis to your content. </li>\n\n\n\n<li>? Discover the power of heading levels to structure and organize your articles effectively. </li>\n\n\n\n<li>? Personalize your text with different font styles and sizes that match your unique brand. </li>\n\n\n\n<li>? Paint with words by changing text colors and adding a splash of creativity to your content. </li>\n\n\n\n<li>? Highlight key points and quotes to make them shine and stand out. </li>\n\n\n\n<li>? Master text alignment to achieve visually appealing and well-balanced content layouts.</li>\n</ul>\n\n\n\n<p>Hartzler is a long-time podcaster in the WordPress space, who just published his <a href=\"https://yourwebsiteengineer.com/532-why-its-a-good-idea-to-switch-to-the-block-editor/\">525th episode of the Your Website Engineer podcast</a>. Congratulations! </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-30_70 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap ngl-articles-webview\">\n	\n						\n			<div class=\"ngl-article-mobile\">\n				<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/live-q-a-design-systems-and-theme-json/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/08/Demo-screenshot-Live-Q-A-Design-Systems.png?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/live-q-a-design-systems-and-theme-json/\" target=\"_self\" rel=\"\"><span>Live Q &#038; A: Design Systems and theme.json</span></a></div><div class=\"ngl-article-excerpt\">One of the key challenges of running a site or series of sites at scale is ensuring design consistency and compliance with a design system. During this show, David Bowman,&hellip; <a href=\"https://gutenbergtimes.com/live-q-a-design-systems-and-theme-json/\" class=\"ngl-article-read-more\" target=\"_self\">Read more.</a></div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			\n			\n			\n\n		\n		\n		</div>\n\n</div>\n\n\n\n\n<p>You must have been waiting for the part 3 of the Beyond Block Styles to come out! Don&#8217;t wait not more! <strong>Justin Tadlock</strong> pushed it over the finish line! <a href=\"https://developer.wordpress.org/news/2023/08/beyond-block-styles-part-3-building-custom-design-tools/\"><strong>Beyond block styles, part 3: building custom design tools</strong></a>. You learn how to add a button and a set of icons to the block toolbar for the Separator block. It&#8217;s a great tutorial for advanced theme developers. </p>\n\n\n\n<p>You would need to to read the other two parts before it, though: </p>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">Part 1: using the WordPress scripts package with themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-2-building-a-custom-style-for-the-separator-block/\">Part 2: building a custom style for the Separator block</a></li>\n</ul>\n\n\n\n<p>It&#8217;s a great project to study from beginning to end. I learned so much about the inner workings of the block editor. </p>\n\n\n\n<img />\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>Early Gutenberg adopter and freelance developer, <strong>Igor Benic</strong> shared in his post <a href=\"https://www.ibenic.com/read-wordpress-block-content-programmatically/\"><strong>How to Read WordPress Block Content Programmatically</strong></a> and read blocks from content in WordPress. You&#8217;ll learn how to tap into the functions of the <code>core/block-editor</code> packages. ICYMI, Benic also published <a href=\"https://www.ibenic.com/how-to-programmatically-add-a-block-in-the-wordpress-block-editor/\">How to programmatically add a block in the WordPress Block Editor</a> earlier this year. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reported on how you should <a href=\"https://wptavern.com/start-testing-wordpress-new-interactivity-api\"><strong>Start Testing WordPress’ New Interactivity API</strong></a>. It&#8217;s still unsure of the Interactivity API will be ready for 6.4 release in November, the Interactivity API packages and features made their way to the Gutenberg plugin with version 16.2. &#8220;Developers can follow the API’s&nbsp;<a href=\"https://github.com/WordPress/gutenberg/blob/trunk/packages/interactivity/docs/1-getting-started.md\">“Getting Started” guide</a>&nbsp;on GitHub to scaffold an interactive block with `@wordpress/create-block`. Take a look at the&nbsp;<a href=\"https://github.com/WordPress/gutenberg/discussions/52904\">roadmap</a>, which has an extensive list of tasks the team has in mind for the initiative and will include tracking issues for features as they progress.&#8221; Gooding wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-upcoming-word-press-events\">Upcoming WordPress Events</h2>\n\n\n\n<p>Join <strong>Nick Diego</strong> and <strong>Justin Tadlock</strong> for a Hallway Hangout on August 17, 2023, at 1:00 PM CST (18:00 UTC) on <strong><a href=\"https://make.wordpress.org/themes/2023/07/31/hallway-hangout-extending-blocks-with-custom-design-tools/\">Extending blocks with custom design tools</a>. </strong>They&#8217;ll have a casual conversation about creating custom design tools for blocks from a theming perspective. You&#8217;ll learn how to go beyond the Block Styles API and build your own custom controls, like an <a href=\"https://developer.wordpress.org/news/2023/08/beyond-block-styles-part-3-building-custom-design-tools/\"><em>emoji-based icon picker for the Separator block</em></a>. Tadlock and Diego will also explore the possibilities of using block development to extend block themes and discuss current theme development limitations. </p>\n\n\n\n<p>Everyone is welcome, but if you&#8217;re interested in block theming or building block themes for clients, this session is especially for you. <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/295158615/\">RSVP for the event</a> through the Learn WordPress Meetup group to access the meeting link. Don&#8217;t miss it!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>WordCamp US</strong> organizers published <a href=\"https://us.wordcamp.org/2023/schedule/\">their schedule for the talks on August 25 and 26, 2023</a>. As with all Regional Flagship events, there will be a live stream. Here is a list of the block related topics. </p>\n\n\n\n<ul>\n<li><a href=\"https://us.wordcamp.org/2023/session/building-a-thoughtful-block-editing-experience/\">Building a thoughtful block editing experience</a> w/ Aurooba Ahmed (lightning) </li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2023/session/the-headless-block-editor/\">The Headless Block Editor</a> w/ Sean Bleakley </li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2023/session/the-independent-theme-developers-field-guide-to-modern-wordpress/\">The independent theme developer’s field guide to modern WordPress</a> w/ Michelle Schlup Hunt</li>\n</ul>\n\n\n\n<p>I love the emphasis on contributing, community and accessibility! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Bossenger</strong> <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\"><strong>announced the first Learn WordPress course cohort</strong></a> on the training team&#8217;s blog: On September 4th, a 6-week cohort titled &#8220;Developing your first WordPress Block&#8221; starts. Bossenger will facilitate the course designed for first-time WordPress block developers. The structure includes weekly sessions covering block development topics such as block styling, attributes, and interacting with WordPress data. </p>\n\n\n\n<p>The cohort will meet in both asynchronous and synchronous sessions, with a one-hour real-time session every Wednesday at 8:00 UTC. If interested, read more about the application and selection processes in the <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">blog post</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Nathan Wrigley</strong> and <strong><a href=\"https://twitter.com/anchenlr\">Anchen le Roux</a> </strong>scheduled this year&#8217;s <a href=\"https://pagebuildersummit.com/\"><strong>Page Builder Summit  for 18th &#8211; 22nd September 2023</strong></a>. They put together  is a great slate of new and veteran speakers. It&#8217;ll have plenty of Gutenberg topics, and it doesn&#8217;t hurt to learn about all the businesses and products in the WordPress space. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: &#8220;<a href=\"https://www.flickr.com/photos/54227024@N02/8261708942\" target=\"_blank\" rel=\"noreferrer noopener\">Mumbai Lab Architecture</a>&#8221; by&nbsp;<a href=\"https://www.flickr.com/photos/54227024@N02\" target=\"_blank\" rel=\"noreferrer noopener\">BMW Guggenheim Lab</a>&nbsp;is licensed under&nbsp;<a href=\"https://creativecommons.org/licenses/by-nd-nc/2.0/jp/?ref=openverse\" target=\"_blank\" rel=\"noreferrer noopener\">CC BY-NC-ND 2.0</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Aug 2023 10:00:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Post Status: WordPress 6.3 RC3 • Cyber Resilience Act • Accessibility in Block Editing • Merging Gutenberg during Alpha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=150074\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://poststatus.com/wordpress-6-3-rc3-cyber-resilience-act-accessibility-in-block-editing-merging-gutenberg-during-alpha/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25593:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 30, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">What do WordPress, Drupal, Joomla, and TYPO3 have in common? Leaders across these Content Management Systems have <a href=\"https://youtu.be/tbnblHzHqBU\">come together</a> to express their concerns and seek dialogue with EU legislators regarding the proposed <a href=\"https://digital-strategy.ec.europa.eu/en/library/cyber-resilience-act\">Cyber Resilience Act</a>. They emphasize the vital role of Free and Open Source Software in fostering innovation, security, and economic prosperity. <br /><br />We&#8217;re just a few days away from August 8th&#8217;s WordPress 6.3 release. <br /><br />Two Gutenberg-related topics are worth consideration. First, Alex Stine shares how he sees WordPress using his screen reader. Secondly, consideration is underway to merge Gutenberg plugin releases into alpha releases.  </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fe_gitMerge kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Whose Ticket, Merging Gutenberg during Alpha, and EU CRA</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f195.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\">WordPress 6.3 RC3</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f39f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a><br /><br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2934.png\" alt=\"⤴\" class=\"wp-smiley\" /><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f510.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\">WordPress 6.3 RC3</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\">People of WordPress: Ihtisham Zahoor</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-10\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/wordpress-6-3-release-day-process/\">WordPress 6.3 Release Day Process</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-15\">\n<div class=\"wp-block-column is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-13\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/04/accessibility-team-meeting-agenda-august-4-2023/\">Accessibility Team Meeting Agenda: August 4, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/04/testing-matrix/\">Testing Matrix</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/new-github-feature-request-separating-access-to-the-meetup-and-wordcamp-trackers/\">New GitHub Feature Request: Separating access to the Meetup and WordCamp trackers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/community-team-meeting-agenda-for-3-august-2023/\">Community Team Meeting Agenda for 3 August, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Recap: Inaugural NextGen Pilot Events</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/a-week-in-core-july-31-2023/\">A Week in Core – July 31, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/beyond-block-styles-part-3-building-custom-design-tools/\">Beyond block styles, part 3: building custom design tools</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/understand-and-use-wordpress-nonces-properly/\">Understand and use WordPress nonces properly</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-2-building-a-custom-style-for-the-separator-block/\">Beyond block styles, part 2: building a custom style for the Separator block</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/dev-chat-agenda-august-1-2023/\">Dev Chat agenda, August 2, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/04/summary-for-docs-team-meeting-august-1-2023/\">Summary for Docs Team meeting, August 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/08/01/summary-for-docs-team-meeting-jul-18-2023/\">Summary for Docs Team meeting, Jul 18, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/08/02/hosting-team-meeting-agenda-2023-08-02/\">Hosting Team meeting agenda 2023-08-02</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/03/matrix-chat-summary-august/\">Matrix chat Summary – August 3, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/31/last-week-openverse-2023-07-24-2023-07-31/\">A week in Openverse: 2023-07-24 – 2023-07-31</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/performance-chat-summary-25-july-2023-2/\">Performance Chat Summary: 1 August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/01/core-performance-team-update-july-2023/\">Core Performance Team Update: July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">Tackling team challenges together</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/31/plugin-review-team-31-jul-2023/\">Plugin Review Team: 31 Jul 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/03/cross-locale-project-translation-editor-request-5/\">Cross-Locale Project Translation Editor Request</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/02/adding-error-checks-at-translate-wordpress-org/\">Adding error checks at translate.wordpress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/02/agenda-weekly-polyglots-chat-august-2-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – August 2, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/08/agenda-for-august-3rd-support-meeting-2/\">Agenda for August 3rd Support Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/07/summary-for-july-27th-support-meeting/\">Summary for July 27th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/31/test-team-update-31-july-2023/\">Test Team Update: 31 July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/07/31/hallway-hangout-extending-blocks-with-custom-design-tools/\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/01/themes-team-update-august-01-2023/\">Themes team update August 01, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/training-team-meeting-recap-1st-august-2023/\">Training Team Meeting Recap – 1st August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/01/xpost-whats-new-on-learn-wordpress-in-july-2023/\">X-post: What’s new on Learn WordPress in July 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-add-tables-to-your-site/\">How to add tables to your site</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-global-variables\">Common WordPress APIs: Global Variables</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-11\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%83%95%E3%83%AB%E3%82%B5%E3%82%A4%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%A7%E5%AE%9F%E9%9A%9B%E3%81%AB%E3%82%B5%E3%82%A4%E3%83%88%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">フルサイト編集で実際にサイトを作ってみよう!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-wordpress-community-team-events-and-roles\">Contributing to the WordPress Community Team: Events and Roles</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-extending-blocks-with-custom-design-tools\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-start-contributing-to-the-wordpress-core\">How to start contributing to the WordPress Core</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-internationalization\">Common WordPress APIs: Internationalization</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-10\">WP dev livestream: Sendig block theme</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Aug 2023 19:29:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WPTavern: WordCamp Asia 2024 Opens Call for Speakers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147494\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wptavern.com/wordcamp-asia-2024-opens-call-for-speakers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2689:\"<p>WordCamp Asia 2024 is happening in Taipei, Taiwan, next year from March 7-9, at the <a rel=\"noreferrer noopener\" href=\"https://www.ticc.com.tw/wSite/mp?mp=2\" target=\"_blank\">Taipei International Convention Center (TICC)</a>. With the dates locked in and venue secured, organizers have now opened the <a href=\"https://asia.wordcamp.org/2024/call-for-speakers/\">call for speakers</a>. The event will feature three days of talks, workshops, and networking events, and organizers expect more than 2,000 attendees.</p>\n\n\n\n<p>Talks will be given in English and there will be four different formats for sessions:</p>\n\n\n\n<ul>\n<li>Long Talks: 40 minutes total (30 minutes for talk + 10 minutes for Q&amp;A)</li>\n\n\n\n<li>Lightning Talks: 10 minutes total (10 minutes for talk only. No Q&amp;A)</li>\n\n\n\n<li>Panel Discussions: Approximately 60 minutes with Q&amp;A</li>\n\n\n\n<li>Workshops: 90 minutes up to half a day</li>\n</ul>\n\n\n\n<p>WordCamp Asia&#8217;s organizers suggested nearly two dozen acceptable topics across a wide range of disciplines, including accessibility, SEO, marketing, Web3, AI, security, case studies, and more. They are especially &#8220;interested in hearing about diverse topics and inspirational stories. Topics such as trends, new approaches, and upcoming changes in related software and WordPress itself will be encouraged.&#8221;</p>\n\n\n\n<p>The call for speakers includes those who are hoping to host or join a panel discussion or host a workshop. Speakers do not have to be experienced at public speaking to be selected for WordCamp Asia. Those who do not have videos of previous talks can record a 5-10 minute video talking about their topic and link to it in the speaker form.</p>\n\n\n\n<p>WordCamp Asia has launched an <a href=\"https://asia.wordcamp.org/2024/underrepresented-speaker-support-initiative/\">Underrepresented Speaker Support Initiative</a> alongside this call for speakers with the goal of removing financial barriers for speakers. The program calls on companies to invest in creating a more diverse, equitable, and inclusive tech community by sponsoring underrepresented speakers, helping them practice their talks, and promoting the cause.</p>\n\n\n\n<p>The event&#8217;s organizers are also <a href=\"https://asia.wordcamp.org/2024/get-involved-with-wordcamp-asia-2024/\">calling for sponsors, media partners, and volunteers</a>. Prospective speakers are limited to two presentation submissions and can also indicate if they would be willing to be selected as a backup speaker. Applications will close on September 30, 2023. Speakers will be notified about the outcome of the selection process in November, followed by speaker announcements in December.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Aug 2023 04:12:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WordPress Remembers: A Memorial To Those We Have Lost\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147472\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/wordpress-remembers-a-memorial-to-those-we-have-lost\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2065:\"<p>WordPress is honoring contributors the community has lost over the years through a new memorial page called <a href=\"https://wordpress.org/remembers/\">WordPress Remembers</a>: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>WordPress dedicates this page to the memory of those we&#8217;ve lost. They&#8217;ve shaped our project and enriched our community. As we remember their passion and commitment to WordPress and open source software, we celebrate their spirit.</p>\n\n\n\n<p>Forever in our hearts, their legacy endures through every line of code and every user they&#8217;ve impacted.</p>\n</blockquote>\n\n\n\n<p>The page lists code and community contributors who left a lasting impact on the WordPress project, and links to their profiles and external blogs and memorial pages. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2204\" height=\"1278\" />\n\n\n\n<p>&#8220;As WordPress continues through the decades, we have to deal with all parts of life, including death,&#8221; WordPress co-creator Matt Mullenweg <a href=\"https://twitter.com/photomatt/status/1686795699093135360\">said</a>, introducing the page on Twitter. &#8220;As a community, we now have a memorial place we can remember and honor those who contributed to WordPress but are no longer part of this world.&#8221; In a followup tweet he added, &#8220;I will be on this page someday.&#8221;</p>\n\n\n\n<p>For a software project that is 20+ years old, with <a href=\"https://wordpress.org/news/files/2023/05/2022-Annual-Survey-Final.pdf\">an aging contributor base</a>, departures from this world will soon become more common. Visiting this memorial page is a heart gripping experience if you had the privilege of knowing any of these beloved contributors. It&#8217;s sobering to consider the impact and legacy of one&#8217;s investments in WordPress, but this elegantly designed memorial calls those questions to mind.</p>\n\n\n\n<p>If you know of someone who is missing from this page, you can contact <a href=\"mailto:memorials@wordpress.org\">memorials@wordpress.org</a> and volunteers will add them.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2023 20:59:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Post Status: What is Coaching &amp; What Are Key Times to Have a Coach with Kelly Gallagher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=150057\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/what-is-coaching-what-are-key-times-to-have-a-coach-with-kelly-gallagher/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47846:\"<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">In this podcast episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> introduces his professional coach, <a href=\"https://www.linkedin.com/in/coachkellygallagher\">Kelly Gallagher</a>, to discuss the role of coaching in personal and professional growth. They explore the difference between coaching and therapy and how they can complement each other. They highlight the value of coaching for high achievers and how it can help with career changes, improving performance, and enhancing communication skills. Cory shares his personal experience with coaching and expresses its positive impact on his life.</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"><strong>Episode Highlights:</strong></p>\n\n\n\n<ul type=\"video\" class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">\n<li>[00:00:00] <strong>The role of coaching and introduction of Kelly Gallagher-</strong>Cory introduces Kelly Gallagher as his professional coach and discusses their working relationship for four and a half years.</li>\n\n\n\n<li>[00:01:25] <strong>Kelly&#8217;s background in business development and coaching training-</strong> Kelly shares her background in business development and her coaching journey, including her training and pursuit of a master&#8217;s degree.</li>\n\n\n\n<li>[00:07:38] <strong>The difference between coaching and therapy, and the value of coaching for high achievers</strong>-Cory and Kelly discuss the definition of coaching, the distinction between coaching and therapy, and the importance of coaching for high achievers.</li>\n\n\n\n<li>[00:11:39] <strong>The distinction between therapy and coaching-</strong>Discussion on the differences between therapy and coaching and how they complement each other.</li>\n\n\n\n<li>[00:12:41] <strong>The value of having a coach for high achievers-</strong>Exploration of the benefits of coaching for high achievers and the importance of self-awareness.</li>\n\n\n\n<li>[00:13:55]<strong> Times when people seek coaching-</strong>Identification of common situations that lead individuals to actively seek coaching, such as career conflicts, the desire for personal growth, and the need for support during organizational changes.</li>\n\n\n\n<li>[00:23:31] <strong>The role of coaching and the importance of ICF certification-</strong>Discussion on the role of coaching, the significance of ICF certification, and the difference between coaching and therapy.</li>\n\n\n\n<li>[00:28:34] <strong>The value of having a coach for high achievers-</strong>Exploration of the benefits of coaching for high performers and the potential negative stigma associated with coaching as a remedial tool.</li>\n\n\n\n<li>[00:31:58] <strong>Coaching for entrepreneurs-</strong>The essentiality of coaching for entrepreneurs, particularly in navigating change, making big decisions, and improving performance.</li>\n\n\n\n<li>[00:34:24]<strong> The role of coaching and seizing opportunities-</strong>Cory reflects on the importance of having a coach and making the most of opportunities in business.</li>\n\n\n\n<li>[00:35:18] <strong>The importance of personal happiness and joy in work</strong>-Kelly discusses the significance of finding joy and personal happiness in one&#8217;s work and how it affects performance.[00:37:09] <strong>The passion for helping others and personal growth-</strong>Kelly shares her passion for helping others find personal growth in coaching and how it is more rewarding than pure sales.</li>\n</ul>\n\n\n\n<div class=\"wp-block-group is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-columns sponsor has-theme-palette-8-background-color has-background is-layout-flex wp-container-18\" id=\"StellarWP\">\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"StellarWP has-theme-palette-1-color has-text-color wp-block-heading\" id=\"Sponsor\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <span><a href=\"https://poststat.us/elementor\" rel=\"sponsored nofollow\">Elementor</a></span></h3>\n\n\n\n<p><strong>Elementor </strong>enables web creators to build professional, pixel-perfect websites with an intuitive visual builder. Quickly create amazing websites for your clients or your business with complete control over every piece, without writing a single line of code. Join <a href=\"https://elementor.com/community/\">a vast community of web creators</a> from all around the world who deliver exceptional websites using Elementor.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow\"><div class=\"wp-block-image elementor-logo\">\n<img src=\"https://poststatus.com/wp-content/uploads/2022/08/Elementor-Logo-Symbol-Blue-150x150.png\" alt=\"Elementor\" class=\"wp-image-104033\" width=\"150\" height=\"150\" title=\"Elementor Logo\" />Elementor</div></div>\n</div>\n</div></div>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Mentioned in the show<strong>:</strong></h3>\n\n\n\n<ul>\n<li><a href=\"https://obcc.utdallas.edu/coaching/\">University of Texas at Dallas Coaching Program</a></li>\n\n\n\n<li><a href=\"https://coachingfederation.org/\">International Coach Federation</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/salesrxcoaching\">Kelly Gallagher</a>  (Executive Coach, <a href=\"https://gallagherexecutivecoachingpartnerships.com/\">Gallagher Executive Coaching Partnerships</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Cory Miller (00:00:00) &#8211; Hey everybody. Welcome back to Post Status Draft. I&#8217;ve got a special guest today and I&#8217;m excited because I&#8217;ve worked with this awesome person professional for I think it&#8217;s been five years now. Four years? No, probably four and a half years now, Kelly. And. So back when I had just sold items, I was working the, you know, my job at trying to transition team, get some things done in the year after we had sold and I was starting to percolate. Okay, I&#8217;ve got this huge career change coming up, this huge business, whatever change in my professional life. And I sought out a coach and found Kelly Gallagher. So she&#8217;s my professional coach for four and a half years. We&#8217;re going to have a great conversation talking about coaching times when it&#8217;s so helpful to have a coach. And I&#8217;ll share personal experiences, too, but you&#8217;re in for a treat today. So Kelly, thanks so much for being on the podcast.</p>\n\n\n\n<p>Kelly Gallagher (00:01:02) &#8211; Thank you for having me. I&#8217;ve been watching some of your podcasts, and I&#8217;m just honored to be the subject of one of them.</p>\n\n\n\n<p>Kelly Gallagher (00:01:07) &#8211; So thank you.</p>\n\n\n\n<p>Cory Miller (00:01:09) &#8211; I often refer to Kelly as my secret weapon because a lot of the big things that have happened in the last five years, for sure in my life I&#8217;ve rehearsed, practiced, talked through all of these with Kelly. So, Kelly, tell us a little bit about your background.</p>\n\n\n\n<p>Kelly Gallagher (00:01:25) &#8211; Um, Cory, I came from a business development specialty within corporate America, specifically pharmaceuticals and the medical industry, and also diagnostics and lab testing. So I was a road warrior. I was out closing deals and my responsibilities escalated and escalated to the point where. Um, the last ten years, I was with a diagnostic lab, and I was also training other salespeople. I was interviewing them, hiring them and then coaching them. But I didn&#8217;t know I was coaching because I wasn&#8217;t sure even what coaching was. I wanted to take over the training department. So I was told, Well, you have no experience, even though I was already doing it. So I challenged and said I would like to go back and get my masters.</p>\n\n\n\n<p>Kelly Gallagher (00:02:16) &#8211; And I entered the coaching program, which is a just gold standard industry. I don&#8217;t know. It turned out to be one of the best. And so I entered that. And then while I was doing it, I thought, why not just get a master&#8217;s in business administration? Because I already know these things. So I went to school for five years and it was the best five years of my life. Um, I learned that I love to learn, and I think that may be what separates good coaches from great coaches. Is that. Constant wanting to move the bar up, that constant going to class mentality to be at another level. And that&#8217;s what&#8217;s really defined my career. There&#8217;s not really a time of the year when I&#8217;m not in continuing education and it&#8217;s my passion. I just want to be a master of my craft. So that was my journey. The interesting sidebar is I was told you can do all this, but if your sales performance drops, we&#8217;re done. We&#8217;re not paying. I said, okay.</p>\n\n\n\n<p>Kelly Gallagher (00:03:29) &#8211; But the more I studied coaching and communications, the higher myself through. And there&#8217;s actually a correlation between the two. It doesn&#8217;t seem like there would be, but I learned how to really listen. I was a good listener to begin with, but I became just a great listener and observer of behavior. And I also learned how to challenge people. So if a buyer told me, yes, yes, I&#8217;m definitely going to get the contract signed. And I sensed a hesitancy, I would call them out and go, you know, you&#8217;re sending one thing, but I&#8217;m hearing something else. It sounds like you&#8217;re still uneasy. And a lot of times by doing that, I could tease out that they weren&#8217;t going to buy it and we can have further discussion. So the coaching actually when I finished up. My sales career. It was as far as I could take it, but I owe it all to the coaching training.</p>\n\n\n\n<p>Cory Miller (00:04:32) &#8211; That&#8217;s awesome. Now, I know you have ICF credentials and all that and you can share a little bit about what ICF is, but so I know you are very involved there.</p>\n\n\n\n<p>Cory Miller (00:04:45) &#8211; Have done there&#8217;s so many regular like you said, I do a lot of work with mental health practitioners and there&#8217;s such a very, I would say regulated, but no like very intense and purposeful way to do therapy. A lot of guidelines, a lot of regulations, a lot of licensure things, ethical consideration, continuing. Ed But coaching has so much of that too. And that&#8217;s where ICF comes into yes.</p>\n\n\n\n<p>Kelly Gallagher (00:05:12) &#8211; And unfortunately, there&#8217;s not a specific license. I wish there was, but because there isn&#8217;t, the consumer has to really be discerning. And one way to start is that ICF because it&#8217;s the gold standard and for coach is not doing continuing education and involved with ICF. I don&#8217;t know. Chances are there will be less rigor to what they&#8217;re going to be able to do. It&#8217;s not that they wouldn&#8217;t be good coaches.</p>\n\n\n\n<p>Cory Miller (00:05:40) &#8211; Yeah, I think the ICF stuff is strong. Sometimes I feel like it&#8217;s a little bit too limiting, but I go, Gosh, it&#8217;s so good because it&#8217;s trying to really professionalize the coaching industry where anybody can just say, Oh, I&#8217;m my coach, I&#8217;m a life coach, whatever it is.</p>\n\n\n\n<p>Kelly Gallagher (00:05:57) &#8211; People just hang out a shingle and say, Boom, magic, I&#8217;m a coach. I two think it can be limiting, but I offer a bit of a hybrid because I have so much business experience. I&#8217;ll often tell my clients, Hey, I&#8217;m going to shift out of coaching if you want. Is it okay if I put on my business act and they almost never had anyone say no in interviews? And so then I&#8217;m able to interject a little, you know what this happened to blah, blah, blah. And I think that&#8217;s what differentiates me from other coaches. But the ICF standards are just critical. And the other thing about the ICF is you have to have 250 hours of continuing education to keep getting the licensure. That&#8217;s not a license to keep, you know, being indoors. And so that really raises the bar and enables the coach to really grow because you&#8217;re constantly taking a course. Yeah.</p>\n\n\n\n<p>Cory Miller (00:07:02) &#8211; So super, super strong. By the way, if you&#8217;re listening, you want to look if the coach has ICF certifications and all that, that&#8217;s really important, rigorous, rigorous work that they do to keep that up means to me it goes through taking it very seriously their profession.</p>\n\n\n\n<p>Cory Miller (00:07:19) &#8211; So Kelly, what is a coach? We&#8217;re going to spend some time talking about the times in which coach has been so, so valuable to your clients, to me, and we&#8217;re going to share experiences around that. But first, I kind of want to get a baseline of like, what is a coach?</p>\n\n\n\n<p>Kelly Gallagher (00:07:38) &#8211; Great question. Mean a coach. I had this conversation this morning at the pool at 5 a.m. Someone said, Oh, you&#8217;re going to coach. They just want content. I said, No, that&#8217;s not really what coaching is. I&#8217;m not really delivering content. I think a coach is someone that walks on a journey with a professional who wants to raise the bar. Um, it can be a life coach too. So then you&#8217;re walking the journey with an individual who has an area of life where they want to improve or progress. And that&#8217;s still the same formula for going through the coaching process, whether it be an executive or whether it be. Someone who wants to increase communication with their husband or wife.</p>\n\n\n\n<p>Cory Miller (00:08:25) &#8211; So, yeah. And part of how we were working together when we first started working together was I was going to the same school you went to, which is fantastic. University of Texas and Dallas and their coaching program is incredible. And being mentored by you. And because I was getting asked when when I left our teams and I was trying to do my own thing, I thought, okay, it&#8217;s going to be coaching People go, What is it, Coach? What do you do? And I was like, Oh gosh, I&#8217;m struggling with these. But it&#8217;s so much that it&#8217;s that walking alongside a person on a journey and I like what you added to it, is like they want to raise the bar, they want to do something more. And, you know, I have so much reflected about my business entrepreneurial career for the last 15 years ago. If I had a coach from the beginning, it would have been so much better in many ways. Not just success, success for sure, but also health clarity.</p>\n\n\n\n<p>Kelly Gallagher (00:09:23) &#8211; It&#8217;s funny you say that, Cory, because even 20 years ago when I was in pharmaceuticals and I was doing very well, had I had a coach, I would have been a rock star because there were rough edges that I couldn&#8217;t see. You can&#8217;t see them in yourselves the way someone else can who&#8217;s actively listening to you.</p>\n\n\n\n<p>Cory Miller (00:09:43) &#8211; Yeah. Well, and you know, the parallel we always give is sports. You know the best. Greatest of all time. Athletes have coaches and have people around them. Like you just assume they wake up and they&#8217;re just as good naturally. No, they work on their craft. And I think about that so much. Like, I know you work with a lot of high achievers and oftentimes so many of the entrepreneurs I&#8217;ve worked with very high achievers too. I&#8217;ve had the pleasure of having people on my team big time, high achievers. And you just go, like, if you really want to do well in what you&#8217;re doing, you need to have somebody that&#8217;s on your side.</p>\n\n\n\n<p>Cory Miller (00:10:23) &#8211; Nobody does it alone. I think that&#8217;s the fast that we perpetuate in our culture and especially in business, like with entrepreneurs, is like, Oh, I&#8217;m the rockstar. I do this by myself, that you got these icons out there. You know, Steve Jobs is the one you hear over and over and over 100,000 times. You go, He didn&#8217;t do it alone. No, there&#8217;s no way you can do it alone. And having someone in your corner that&#8217;s helping you perform at the highest level is so critical.</p>\n\n\n\n<p>Kelly Gallagher (00:10:54) &#8211; Yes, I agree. And, you know, oftentimes people will also say, well, isn&#8217;t it like therapy? I would call it therapy. Ten x. Because therapy&#8217;s great and I think everyone should go through that process at some time in their life. I really believe in it. But at some point it&#8217;s limited because it&#8217;s just keeps moving into the past and feelings and often sad feelings. Whereas coaches moving the person forward so high achievers get bored in therapy after a while, after a while, and they might go back and forth to therapy.</p>\n\n\n\n<p>Kelly Gallagher (00:11:34) &#8211; But generally they find that coaching helps them because it&#8217;s goal oriented.</p>\n\n\n\n<p>Cory Miller (00:11:39) &#8211; Yeah, well, and I know there&#8217;s a big distinction between therapy and coaching and really, you know, really try to their distinct things. And oftentimes probably you have taught this mentioned like therapy is looking back, coaching is looking forward. Is that how you kind of see that?</p>\n\n\n\n<p>Kelly Gallagher (00:11:56) &#8211; Yes. And you know, as a coach and a credentialed coach, I&#8217;m ethically bound if I feel like someone continually goes into therapy. Waters and themes, um, I&#8217;m bound to refer them on to therapists till they are more stabilized. And then oftentimes a lot of my clients are in therapy and coaching together. They really work well hand in hand.</p>\n\n\n\n<p>Cory Miller (00:12:22) &#8211; Yes. In fact, for the bulk of the time right now, I am not currently seeing a counselor, however, for the last see two months, but for the bulk of the time we&#8217;ve worked together have had a counselor and a coach. So I think their yin yang, their.</p>\n\n\n\n<p>Kelly Gallagher (00:12:41) &#8211; Right. And the people that come to me and have had some therapy, even if it was limited, they have just a little bit more self awareness.</p>\n\n\n\n<p>Kelly Gallagher (00:12:49) &#8211; So coaching progresses faster.</p>\n\n\n\n<p>Cory Miller (00:12:52) &#8211; Yeah. If you&#8217;re doing your work to.</p>\n\n\n\n<p>Kelly Gallagher (00:12:55) &#8211; Because other otherwise get clients. Sometimes we&#8217;ll say, Well, what does it matter how I&#8217;m feeling about this? Well, it matters a lot because, you know, your heart is just as involved in these decisions and actions and creative things you&#8217;re asking yourself to do as the frontal lobe of your brain. So they are connected.</p>\n\n\n\n<p>Cory Miller (00:13:14) &#8211; Yeah. Okay. So we talked about what coaching is a little bit we talked about the distinctions, therapy versus coaching and how they&#8217;re additive and can exist together. And in fact, or even better sometimes, oftentimes, especially in my experience, I would say. Well, I&#8217;m curious, Kelly So I know my own personal experience is related to our coaching professional relationship. But I&#8217;m curious, what are the times you you see people getting into the meat of this kind of conversation between us is like, what are those times when people go, okay, they&#8217;re thrust out to go actively look for a coach and end up, you know, in a in a room or a meeting with you.</p>\n\n\n\n<p>Kelly Gallagher (00:13:55) &#8211; I would say that generally there&#8217;s some type of struggle. It can be a conflict at work. That&#8217;s a huge one because that dips into, well, do I want a career change? And sometimes people come and they don&#8217;t know what they want. They&#8217;re just not happy. Um, people who want to progress with that and find meaning and integrate what they&#8217;re learning about themselves will come to coaching because that process. It really it&#8217;s like turbocharging the job search and turbocharging people to take interviews and move on and move up without really any kind of formal instruction to just that self-awareness that it builds. So that&#8217;s one of the big ones. Um.</p>\n\n\n\n<p>Cory Miller (00:14:44) &#8211; Let&#8217;s talk about struggle for a second. So struggle back to that. So is that so you mentioned a couple of factors there. I want to hit both sides. One is maybe I need to make a change, like move out of what I&#8217;m doing. But there&#8217;s another one, which is maybe I want to get promoted or have been promoted or, you know, within an organization to and I&#8217;m curious your experiences around around that too.</p>\n\n\n\n<p>Cory Miller (00:15:10) &#8211; So I like that it starts with like there&#8217;s some kind of struggle and they&#8217;re seeking outside perspective and help support with that. But it starts with some things they&#8217;re trying to change and wrestling against. Sounds like.</p>\n\n\n\n<p>Kelly Gallagher (00:15:24) &#8211; Right? And many times, you know, when you&#8217;re in a new position or you&#8217;re in a position where you are striving to do something else within that company, you will conform to their expectations and almost wear a mask. The to the degree that you lose something in the translation because then you&#8217;re not really connecting with your creative side or your problem solving side or your heart. And so a lot of work can be done to find that balance for people. The other thing that touches on is fear of failure. Your fear of failure is. It&#8217;s just a sweet spot because so many. Points of wanting to change. If we whittle down and we go with the client, what&#8217;s beneath that? What&#8217;s beneath that or what&#8217;s beneath that? And we get down to the core or the middle of the onion. It&#8217;s fear of failure.</p>\n\n\n\n<p>Kelly Gallagher (00:16:19) &#8211; And that&#8217;s that&#8217;s just a part of being human. No one wants to humiliate themselves or fall down. But I think, too, in our society, think about schools nowadays. Everyone&#8217;s given a trophy. Soccer, Everyone&#8217;s campaigning, trophy swimming. Everyone makes the team. No one&#8217;s not on the team. Great. So children are raised to not really fail or understand that they founded something and think in a way, I like the philosophy, but in a way I think I see a lot of young adults who come out into the world and they are terrified of not getting a trophy of not. And the reality is, in real life, you don&#8217;t get that many trophies.</p>\n\n\n\n<p>Cory Miller (00:17:06) &#8211; Yep. Well, we that was that fear of failure thing. We, we talked our last coaching session about that specifically and totally like, you know, when you&#8217;ve especially if you&#8217;ve been accustomed to winning, doing succeeding and then you hit some failures and or trying to do anything big and new, take that next job, start that new endeavor, whatever that is, and that, you know, oh, this is not a guaranteed success.</p>\n\n\n\n<p>Cory Miller (00:17:35) &#8211; So that that definitely resonates.</p>\n\n\n\n<p>Kelly Gallagher (00:17:37) &#8211; Right? And if I fail, that also relates to a further theme of then the fear of being actually seen for who you are. Um, yeah, it&#8217;s a heavy topic and it can take a while to work through, but it&#8217;s, I think most of my clients will say that&#8217;s valuable work. And it&#8217;s not that they become fearless, but I think they&#8217;re able to notice the emotion name and then kind of negotiated.</p>\n\n\n\n<p>Cory Miller (00:18:08) &#8211; Yeah, you mentioned the word emotions. And I think when I first started working with you, I didn&#8217;t I didn&#8217;t go to that realm. I was, you know, okay, more intellectual thinking process and stuff. And you&#8217;re extremely helpful with that. And probably because of some of the, you know, understandings between therapy and coaching or misunderstanding to say, I didn&#8217;t really get into that. But I think our best work has come with the emotions. Like my my definitely I&#8217;ve benefited every time we&#8217;ve talked. I&#8217;ve been better for it. However, I think the most profound times is when we get into, okay, I&#8217;m doing this thing.</p>\n\n\n\n<p>Cory Miller (00:18:48) &#8211; It&#8217;s an event, like you said, a struggle or something new or a change or something I&#8217;m preparing for. But then okay, the emotion around that and understanding that and leveraging, you know, really deep dive into that where I&#8217;m trying to improve. I can&#8217;t remember how many times you&#8217;ve said to me, okay, well they are not in this call. What is the what about you? And I was like, Oh man, doing that hard work, which is made I know it&#8217;s made me better as a professional and a leader for sure, because oftentimes you kind of redirect back to me and go, okay, well, they&#8217;re not here. Let&#8217;s talk about what this means to you, for you. And I&#8217;m always like, Well, let me take a deep breath on that one.</p>\n\n\n\n<p>Kelly Gallagher (00:19:31) &#8211; That&#8217;s a hard one. I learned that actually didn&#8217;t learn that at Utd or anywhere. I learned that as a young rep out in the field and I complain about these idiot customers. Right? And the manager told me once, he said, Turn your rearview mirror to your face.</p>\n\n\n\n<p>Kelly Gallagher (00:19:48) &#8211; And I didn&#8217;t. He goes, Now look at that. That&#8217;s the person that would have to change. The client&#8217;s not going to change. And it was the most profound thing. It kind of hurt my feelings, but it was so true.</p>\n\n\n\n<p>Cory Miller (00:20:01) &#8211; Well, I&#8217;ve talked through everything with you from partner team issues, all that. And it&#8217;s been so helpful because I think oftentimes kind of thinking, okay, yeah, they&#8217;ve got to change. There&#8217;s something with them. And the real work, profound and deep, that continues to get deeper is what does that mean for me about me? What do do I need to change something and what is that? And those are the times really in reflective work that I go, okay. And more and more I think I&#8217;m getting it. Or I go, okay, So something I&#8217;m not aware about myself potentially pointing outwards and then going, I kind of need to turn the rearview mirror back to myself.</p>\n\n\n\n<p>Kelly Gallagher (00:20:46) &#8211; Back to your face? Yes.</p>\n\n\n\n<p>Cory Miller (00:20:48) &#8211; It&#8217;s not the easiest thing to do, but I&#8217;m glad you do it.</p>\n\n\n\n<p>Kelly Gallagher (00:20:50) &#8211; It&#8217;s not the easiest thing to do. And in periods of conflict or intense conversations with bosses or calling people, you&#8217;re supervising, it&#8217;s extremely hard to stop yourself and say, wait a minute, who am I? And yeah, it&#8217;s it&#8217;s really, really hard. But I think as people progress in coaching, they become almost a coach within themselves.</p>\n\n\n\n<p>Cory Miller (00:21:16) &#8211; Yes. Yes. I can hear you quite a bit doing that.</p>\n\n\n\n<p>Kelly Gallagher (00:21:21) &#8211; Yeah. Oh yeah. So that would be my goal is that when I&#8217;m not there because I&#8217;m not there all the time and I don&#8217;t know of it, even though I know so much, I don&#8217;t know all of it. But my goal would be when that person&#8217;s gone for a week or they&#8217;re in a high stress situation, they&#8217;re able to somewhat coach themselves through it.</p>\n\n\n\n<p>Cory Miller (00:21:44) &#8211; Absolutely. Well, okay. So we talked about like the struggle conflict. Something&#8217;s going on there. Want to do reach something new? Maybe they&#8217;re evaluating a big change. I mean, that resonates with me. I was that&#8217;s how we kicked off our thing.</p>\n\n\n\n<p>Cory Miller (00:21:59) &#8211; It was like I was changing my profession career very substantially, knew I was going to be leaving the company I started. And, you know, okay, here&#8217;s a totally new avenue and having somebody to talk that through the fear of failure, the emotions of being an achiever, especially a high achiever, trying to do something in the world like an entrepreneur, what are some other things that you you see often in your coaching?</p>\n\n\n\n<p>Kelly Gallagher (00:22:27) &#8211; Well, I would say the other thing, the theme is some type of organizational change, because your organization, of course, they&#8217;re always changing. And there are new standards that people don&#8217;t. We talked about that before we went on tape that sometimes people don&#8217;t like change. So being able to go in and help a person challenge their assumptions about the change really recognize within themselves the any negative thinking loops or or extra baggage they&#8217;re bringing in the situation and then thrive throughout the change would be a big thing. Um, and as they go along to they learn about themselves and then to integrate that learning.</p>\n\n\n\n<p>Kelly Gallagher (00:23:12) &#8211; Back into the organization. That&#8217;s changing because change is constant. Yep. I don&#8217;t think I&#8217;ve ever been in an organization in 30 years that wasn&#8217;t doing some type of change. It&#8217;s almost never stay.</p>\n\n\n\n<p>Cory Miller (00:23:31) &#8211; It&#8217;s yeah, absolutely. Well, there&#8217;s two things I think about when we&#8217;ve worked together and what I know of coaching too. It&#8217;s it&#8217;s the word change that you said. Some change. Big change oftentimes big change. The other side of the coin for me is performance.</p>\n\n\n\n<p>Kelly Gallagher (00:23:47) &#8211; So yeah.</p>\n\n\n\n<p>Cory Miller (00:23:49) &#8211; Continual performance. So like and I think about those listening in why you won&#8217;t get you want to get coaching for yourself and your team is that performance factor like it&#8217;s an investment back into yourself or your team if you&#8217;re providing coaching. I think some great organizations, particularly in WordPress I&#8217;ve heard of because I&#8217;ve referred people to you that happen to be in WordPress. I go, Oh, I love the forward thinking of that. You&#8217;re going, it&#8217;s an investment in their people, but the performance side. So we&#8217;ve talked a lot of some about this change side.</p>\n\n\n\n<p>Cory Miller (00:24:24) &#8211; There&#8217;s something going on and how we wrestle and adapt to that change where we talk about motions and different things and then but the other side to me is like, I can&#8217;t remember how many times I call it performance, but what I think it is, is like preparation. I mean, some of the biggest deals I&#8217;ve done in five years have been rehearsed, practiced, polished, perhaps even with you. And gosh, I didn&#8217;t have that my previous ten years. And I thought, wow, I went into so many situations. I thought I had done my preparation. But doing it with you with a coach was made things so much better, I think, through that process. Kelly It also eliminated like things I wasn&#8217;t aware of, things I hadn&#8217;t thought about, and just an approach to get some, like, clarity.</p>\n\n\n\n<p>Kelly Gallagher (00:25:12) &#8211; Flirty, some big one. And I think that goes into the third bucket of communication skills. Just people sometimes come to me and in her struggle or there&#8217;s conflict or they&#8217;re going into a big sales promotion and they&#8217;re not quite sure how to go about it.</p>\n\n\n\n<p>Kelly Gallagher (00:25:29) &#8211; So that would all fall into the bucket of communication skills. And that that&#8217;s a big one. I don&#8217;t think oftentimes people think they&#8217;re coming across one way, but it&#8217;s quite different if you&#8217;re observing them. The other thing is. They, you know, like you said, you&#8217;ll rehearse. And rehearse. But when you get in that situation sometimes. Hopefully you&#8217;re primed with enough rehearsal to lean back. If you forget what you&#8217;re going to say, you can lean back into the gist of it. So I think for performance, though, it comes down to communication skills and confidence, because in selling some time it&#8217;s not what you said anyway, it&#8217;s how you said it. And you can walk in if you say it with conviction and you have that internal clarity, as you mentioned, and conviction. The little wordsmithing and nuances of it aren&#8217;t going to matter. They&#8217;re going to matter. But the big the capital A to achievement or performance is how you set it.</p>\n\n\n\n<p>Cory Miller (00:26:36) &#8211; Well, I didn&#8217;t say this in the beginning, but we we now meet twice a week and we&#8217;ve I think we&#8217;ve met twice a week for the last year or two.</p>\n\n\n\n<p>Cory Miller (00:26:44) &#8211; And that was out of, oh, I need these times. We&#8217;re kind of booking them at the front of the week and the end of the week. But oftentimes I realize so many times it&#8217;s just seeking clarity for myself and those of us who are leaders out there trying to give a clear vision to somebody else, I&#8217;ll just say it. Maybe other leaders just wake up with clairvoyant vision. I don&#8217;t. I need rehearsal. I need work. I need to bounce it off people. I need a coach to help me kind of ask questions, think, think it through. And every single time I&#8217;m better. I remember some of the biggest ones that I&#8217;ve, like, talked to you. And it&#8217;s not even one session, maybe 2 or 3. They end up talking about it. But I go, Gosh, if I hadn&#8217;t had that, I would have made so many mistakes going into that big decision or time of presentation, whatever that was. And I&#8217;m so better for like I just need to practice and realize I couldn&#8217;t just do that.</p>\n\n\n\n<p>Cory Miller (00:27:40) &#8211; I needed someone else to help me. And that&#8217;s where you&#8217;ve come in and done that. And so clarity for me is like when you say, what? When people would ask me, What&#8217;s the biggest takeaway for coaching? I go clarity and what is clarity? Build what you said confidence. And those two alone have made me a better leader. That&#8217;s why I can say, let&#8217;s just go back to the start of my career. If I&#8217;d had a coach, it started my career. Everything would have been better because I&#8217;ve been more clear, more confident.</p>\n\n\n\n<p>Kelly Gallagher (00:28:03) &#8211; Being a millionaire ten times over just had a coach because I did so many stupid things along with the good things. That you don&#8217;t know, but you do learn from failure. You do learn. Oh, and so, you know, maybe not, but I sure would have liked to have a coach. It is a perk for high performers. If if if you if it&#8217;s a if there&#8217;s an employer listening in and they&#8217;re thinking of who does that need coaching? Yes, it can be remedial, but sometimes then it&#8217;s not the employees idea.</p>\n\n\n\n<p>Kelly Gallagher (00:28:34) &#8211; The high performance will progress the fastest because it generally will be their idea. They want that perk and they want to grow a career.</p>\n\n\n\n<p>Cory Miller (00:28:44) &#8211; This is my personal opinion, not Kelly. So I want to be clear about that. But I&#8217;ve been around organizations that use coaching as remedial, and I go, Then what happens is coaching gets stigmatized within that organization of if you&#8217;re not performing and you&#8217;re doing a crappy job, you&#8217;re going to get sent. And it has a negative tint to coaching, which is not what it&#8217;s supposed to be. It&#8217;s supposed to be progressing positive, helping improving, navigating situations. And this one organization in particular, it&#8217;s like that&#8217;s how they use coaching. I go, Oh man, Like, then they then all these high performers have this worry about it and don&#8217;t want to potentially go into coaching and miss this incredible benefit to what coaching is.</p>\n\n\n\n<p>Kelly Gallagher (00:29:31) &#8211; That&#8217;s so true. There&#8217;s someone at my door. Can I. Can we pause?</p>\n\n\n\n<p>Cory Miller (00:29:36) &#8211; Yeah.</p>\n\n\n\n<p>Kelly Gallagher (00:29:45) &#8211; Yeah, we&#8217;re talking about, like, high performers and performance coaching. And I do want to make the point that that&#8217;s kind of what I think is my differentiator is that I have all that coaching training, but also I&#8217;ve been in the business world for 30 years selling. So if someone asked me about that, it&#8217;s easy for me to switch out. Yeah, most coaches have like a background, so they&#8217;ve never really had to go out into the world and perform, right?</p>\n\n\n\n<p>Cory Miller (00:30:17) &#8211; Yeah. You bring both sides to that coin I think is incredibly helpful. Like I&#8217;ve talked so much with you about cells because it&#8217;s a weak area. I feel like it&#8217;s a weak area for me, but something I&#8217;ve had to do but forced to do and now trying to begrudgingly trying to do it. But I know you&#8217;ve got such an extensive sales background, business development background that totally leveraged that. In fact I think that&#8217;s how our two times a week started was a sales academy where it wasn&#8217;t necessarily coaching, it was more like sales coaching.</p>\n\n\n\n<p>Kelly Gallagher (00:30:47) &#8211; Right. And it&#8217;s very hard for someone to coach you if they haven&#8217;t walked down the street, guide you down the path. If I&#8217;ve never been on it, I can coach and I can move you in many ways, but can&#8217;t exactly help you to perform because I don&#8217;t know how to perform. So I think that is the differentiator in my coaching style as I&#8217;ve been there. I&#8217;ve been in sales meetings where I got humiliated. I&#8217;ve had clients slam doors in my face. You know, I&#8217;ve executed $1 million contract. So. I just think it helps me to bring more to the party.</p>\n\n\n\n<p>Cory Miller (00:31:25) &#8211; Yeah. And you understand the complete picture. That&#8217;s why, you know, our community is a lot of founders and a lot of high achiever leaders. You know, I&#8217;m curious your thoughts about entrepreneurship, entrepreneurs and coaching. You know, I don&#8217;t know your risk, your client base, but I am one. I know I&#8217;ve benefited from incredibly navigating change, big decisions and the performance side. But what do you say to entrepreneurs about coaching?</p>\n\n\n\n<p>Kelly Gallagher (00:31:58) &#8211; I&#8217;d say it&#8217;s essential because of everything we&#8217;ve talked about in the end.</p>\n\n\n\n<p>Kelly Gallagher (00:32:04) &#8211; As an entrepreneur, you&#8217;re alone, right? That&#8217;s what it is. That&#8217;s the gig. You might have a few people on your team, but generally you&#8217;re alone. It&#8217;s very hard to win deals in isolation. So I would say having a business coach is key to moving forward. Not only in all the things we mentioned, the clarity, the communication, the conflict, the struggle, but then sometimes you just have to go execute. And so for me, it&#8217;s very helpful because I&#8217;ve been in that sales situation so many times and understand features, benefits. I understand how to extrapolate from a client what&#8217;s going to really matter and what&#8217;s not. And I can help people with their slide deck or, you know, whatever it is they want to. So I will generally I can come in in that regard like we do and be a consultant on Friday, but a coach on Mondays. And then and most of my clients who are entrepreneurs use me in that way. Like they will sometimes just bring us like back or we&#8217;ll practice a presentation or they&#8217;ll practice what they&#8217;re going to say to their team before they say it.</p>\n\n\n\n<p>Cory Miller (00:33:18) &#8211; Yep.</p>\n\n\n\n<p>Kelly Gallagher (00:33:18) &#8211; Get some clarity around it to understand. How they&#8217;re feeling in that moment of saying these wonderful things they think are are going to move the team. And sometimes they come out of the meeting and they&#8217;re going to say something completely different. Once we do the coaching, it&#8217;s not that I ever told them to say anything different, but we, you know, polished it. Let&#8217;s say, you know, they come out with this big chunk of coal and they leave and they&#8217;ve got a little diamond and it&#8217;s polished. And like you said earlier, they feel confident.</p>\n\n\n\n<p>Cory Miller (00:33:50) &#8211; Maybe there&#8217;s some entrepreneurs that that come fully birthed into the whole process, but most of us have to learn it and grow through it. What I&#8217;m hearing, though, you know, big decisions, big challenges, big changes, and then the performance side preparation, Polish getting ready for those big things, too. And then the simply put, just trying to make the most of the opportunity. That&#8217;s what I think about. Like so many high achievers that go with an entrepreneur&#8217;s, like we have an opportunity.</p>\n\n\n\n<p>Cory Miller (00:34:24) &#8211; We often like my my story is I stumbled into it, stumbled into it and go, wow, I have this amazing opportunity. So much with business. You go like, it&#8217;s right timing, it&#8217;s right place, right people, right, partners, all the things that have to go together for something to go really well. And then you go, I want to make the most of that. And that&#8217;s my reflection, is that I had an opportunity. I wanted to seize that opportunity to make the most of it. Now, seeing, Oh, wow. Now I did have a coach during about half of my business time, invaluable to help us with the organization. But I go like having someone that this is why we keep working together as I go. I just need it. It&#8217;s just a part of making the most of who I am and my opportunities that come my way to to do even more. And it&#8217;s not necessarily just about money, but it&#8217;s about making the most of the opportunity.</p>\n\n\n\n<p>Kelly Gallagher (00:35:18) &#8211; Right.</p>\n\n\n\n<p>Kelly Gallagher (00:35:19) &#8211; And Joy, while you&#8217;re doing you we haven&#8217;t even touched about that. But there&#8217;s that personal happiness factor and a lot of my clients either are working out or I have them. I try to persuade them to start a fitness program while they&#8217;re with me. But that joy, that love of what you&#8217;re doing, you know, if it&#8217;s not there, it&#8217;s very hard to perform on your.</p>\n\n\n\n<p>Cory Miller (00:35:43) &#8211; Yeah. And you&#8217;ve been such a good coach and you walk that talk. Kelly was telling me before we started the recording that she just ran a mile and swam, and I was like, Gosh, you overachiever. But it&#8217;s such a good inspiration for me for sure, because that other aspect of just life and business and everything is just being physically healthy. And you are a great encourager and you walk your talk.</p>\n\n\n\n<p>Kelly Gallagher (00:36:07) &#8211; I try. I try. I try. I mean, no one&#8217;s perfect. But yeah, I definitely try. And I also find because I work out a lot and I&#8217;m more effective for people because, you know, it brings all that blood flow to the brain.</p>\n\n\n\n<p>Kelly Gallagher (00:36:20) &#8211; So I shared with Cory that sometimes in between clients I&#8217;ll just run up the hill outside my house 4 or 5 times just to sharpen myself for the next person because I can feel it within myself. Then I come in their house and I&#8217;m all happy again and I&#8217;m feeling creative and supercharged and ready to go.</p>\n\n\n\n<p>Cory Miller (00:36:41) &#8211; Oh yeah. You can tell what the energy you have for sure. Well, Kelly, thanks so much for taking the time to talk to us about what you&#8217;re doing. Share a little bit of the experience. I mean, they resonate with me. Everything you&#8217;ve talked about are things that we&#8217;ve worked on in our coaching sessions, and I&#8217;ve been better for it as a person on Earth, as a human, on earth, as a business entrepreneur, leader, all those. But anything else that you want to share that we didn&#8217;t get to talk about?</p>\n\n\n\n<p>Kelly Gallagher (00:37:09) &#8211; No, I mean, what you just said, that&#8217;s what I live for. That&#8217;s my passion is did I, you know, did I help someone? Did they feel better after we, you know, did we move the bar? And I just live for success stories.</p>\n\n\n\n<p>Kelly Gallagher (00:37:23) &#8211; And I find it so much more rewarding than just pure sales. Although I would have argued back then that I was making people&#8217;s lives better because I had a terrific product or whatever, but somehow that what you just said, just seeing personal growth in other people, I just kind of live for that. So thank you.</p>\n\n\n\n<p>Cory Miller (00:37:43) &#8211; Bet. Well, thanks, Keller, for being on. And thanks, everybody, for listening. We&#8217;ll share in the show notes how you can get a hold of Kelly if you&#8217;re interested in talking more with her. She&#8217;s fantastic. Coach, you can&#8217;t. I&#8217;ve referred you numerous times to people that now I believe are our regular clients with you. And we they&#8217;re defensive minded and we always talk like, yep, I just had my Kelly session, just had my Kelly Sessions, so.</p>\n\n\n\n<p>Kelly Gallagher (00:38:08) &#8211; Well, thank you for doing that. Yes. I don&#8217;t really advertise. I haven&#8217;t ever. I only did maybe in the first year. But I think that&#8217;s the other thing. Good coaches just kind of get referrals and.</p>\n\n\n\n<p>Kelly Gallagher (00:38:21) &#8211; That&#8217;s the way it should be.</p>\n\n\n\n<p>Cory Miller (00:38:23) &#8211; You do. All right. Thanks, everybody, for listening to Post Status Draft. It&#8217;s been another episode kind of went out of our league but love to introduce people that have made an indelible difference in my life and to share their wisdom. So we&#8217;ll see everybody next time. Thank you.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2023 20:51:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Do The Woo Community: Scaling and Performance with Justin Mazzi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75777\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://dothewoo.io/scaling-and-performance-with-justin-mazzi/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:392:\"<p>Zach and Carl are joined by Justin Mazzi from A2 Hosting to chat about all things hosting, performance and more.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/scaling-and-performance-with-justin-mazzi/\">Scaling and Performance with Justin Mazzi</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2023 10:43:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"WPTavern: BuddyPress 12.0 to Introduce Community Visibility Feature that Restricts Access to Members Only\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://wptavern.com/buddypress-12-0-to-introduce-community-visibility-feature-that-restricts-access-to-members-only\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2165:\"<p>BuddyPress 12.0 is set to introduce <a href=\"https://bpdevel.wordpress.com/2023/07/30/bp-dev-chat-summary-for-july-17-agenda-for-july-31/\">a new Community Visibility feature</a> that gives site administrators the option to restrict access to the community sections of the site. Sites set to &#8220;members only&#8221; will show an access error message and a login form when a non-logged-in user tries to view a page generated by BuddyPress.</p>\n\n\n\n<img width=\"936\" height=\"561\" />\n\n\n\n<p>The Community Visibility setting makes it possible to create a private community site without adding any plugins to BuddyPress, a feature that has frequently been requested by BuddyPress site admins. It is being introduced as a basic toggle but BuddyPress contributor David Cavins, who worked on the feature, said it lays the groundwork for future, more granular privacy controls.</p>\n\n\n\n<p>The BuddyPress core development team has also published the <a href=\"https://wordpress.org/plugins/bp-classic/\">BP Classic</a> plugin ahead of the 12.0 release. The plugin provides backwards compatibility for sites using plugins or themes that are not ready for the BP Rewrite API that will be introduced in 12.0. It  includes features and templates that are fully deprecated: </p>\n\n\n\n<ul>\n<li>The BP Legacy widgets (these were migrated as Blocks in BuddyPress 9.0.0).</li>\n\n\n\n<li>The BP Default theme.</li>\n\n\n\n<li>The BP Legacy navigation globals (<code>buddypress()->bp_nav</code> &amp; <code>buddypress()->bp_options_nav</code>).</li>\n</ul>\n\n\n\n<p>An <a href=\"https://buddypress.org/2023/07/bp-classic-1-0-0/\">advisory about BP Classic</a> was posted to the official BuddyPress blog to help site owners figure out if they will need this plugin. Those who require it before upgrading can install it ahead of time and it will be dormant until it is needed. </p>\n\n\n\n<p>The new Community Visibility feature was <a href=\"https://buddypress.trac.wordpress.org/changeset/13533\">committed</a> to trunk five days ago and is on track to be included in the next major release. BuddyPress 12.0 is anticipated to be released on October 30, 2023, and Beta 1 is overdue and expected any day.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 21:02:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"WPTavern: WordPress.com Makes a Bid for Google Domains Customers, Offering 1 Million Free Transfers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147374\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/wordpress-com-makes-a-bid-for-google-domains-customers-offering-1-million-free-transfers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5370:\"<p>WordPress.com is making a strong bid for Google Domains customers after the the product was sold to Squarespace in a deal reportedly worthy $180 million. Shortly after the sale was announced, WordPress.com <a href=\"https://wordpress.com/blog/2023/06/21/how-to-transfer-your-domain-to-wordpresscom/\">pitched Google Domains customers</a>, reminding the public that the company is also a domain registrar, but the call to action didn&#8217;t include much incentive to switch.  </p>\n\n\n\n<p>This week WordPress.com is putting the heat on with a new offer to pay transfer fees and an additional year of registration for the first million domains moved from Google Domains. WordPress.com is also guaranteeing Google Domains customers the same pricing or lower for 400+ top-level domains.</p>\n\n\n\n<p>&#8220;This will also apply to existing WordPress.com customers across most domains, meaning that in many cases we’re lowering your prices.&#8221; Automattic CEO Matt Mullenweg said in the <a href=\"https://wordpress.com/blog/2023/08/01/transfer-unlimited-google-domains-to-wordpresscom-for-free/\">announcement</a> this week.</p>\n\n\n\n<p>&#8220;This isn’t a temporary thing. We’re committed to keeping domain prices low, and will only raise them if our wholesale costs go up (we’ll run our domains business like Costco).&#8221;</p>\n\n\n\n<p>Squarespace has committed to honor the renewal prices previously set by Google Domains existing customers for 12 months but will set its own prices after this time. </p>\n\n\n\n<p>In an <a href=\"https://www.theverge.com/23795154/squarespace-ai-seo-web-social-algorithms-anthony-casalena\">interview with The Verge</a>, Squarespace CEO Anthony Casalena said his company is already using a lot of the same infrastructure Google is using in their Cloud DNS product, having  resold Google Workspace for almost a decade. Squarespace currently employs 1,750 people with revenue under a billion dollars this year. Acquiring Google Domains gives the company the opportunity to cross-sell website packages to its incoming domain customers. There are approximately 10 million domains up for grabs in the transfer of customers.</p>\n\n\n\n<p>Casalena said that being a reseller of Google Workspace was a major factor in Google&#8217;s decision to offer the domains to Squarespace, in addition to having the infrastructure to manage the business. This partially explains what was an otherwise bewildering deal that came as a surprise to the industry:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>First off — once in a lifetime opportunity for us. Incredibly grateful that we were selected as the stewards of that business. We weren’t asking them, like, &#8216;Hey, planning on shutting down domains or anything?&#8217; It wasn’t exactly outbound. I think they made the decision that it’s not a business that they were going to be in. And they contacted a couple of legitimate parties who could potentially even take on a business of that size because, again, it’s not the code or the employees are moving — it’s basically the domains themselves and the hosting services and the registrations, that sort of thing. So that really narrows it down to the number of companies that could even support that.</p>\n\n\n\n<p>Then the other thing that was a big factor is we’ve been a huge fan and big reseller of Google Workspace for nearly a decade now, which was very important to them, and we’re incredibly sophisticated in selling Domains, selling Google Workspace, servicing it, and managing that for millions of people. So we were able to find a transaction that worked for us. </p>\n</blockquote>\n\n\n\n<p>Automattic CEO Matt Mullenweg <a href=\"https://twitter.com/photomatt/status/1686393926603644928\">reacted</a> to the deal on Twitter this week, saying that he was disappointed Google didn&#8217;t make it a more competitive process. </p>\n\n\n\n<p>&#8220;This might cost a ton of money but I was bummed we didn&#8217;t even get a crack at this, my guess is Cloudflare, Godaddy, and Bluehost didn&#8217;t either—why Google didn&#8217;t make this a competitive process?&#8221; Mulleweng said. &#8220;Concerning to have so many domains going to a proprietary CMS.&#8221;</p>\n\n\n\n<p>WordPress.com has been slowly inching towards becoming a one-stop shop for users&#8217; website needs. The company recently <a href=\"https://wptavern.com/wordpress-com-makes-monetization-features-available-for-free\">made its monetization features available for free</a>, making the platform more attractive to creators who are just starting out online. Based on the reaction to Mullenweg&#8217;s tweet, it seems many people are still not aware that they can buy their domains from a registrar and host their websites elsewhere. If you are just hearing about WordPress.com&#8217;s domains, it&#8217;s natural to think they are only for WordPress sites, so the company has some work to do in making prospective customers aware.</p>\n\n\n\n<p>Users can be hesitant to move to a new registrar when they don&#8217;t fully understand the process and don&#8217;t want to negatively impact their online presence. In the case of Google Domains customers, they are moving to a new registrar after the sale closes later this year, whether they like it or not. WordPress.com&#8217;s deal is a compelling offer if they can better position their domains as an independent service.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 17:11:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Gutenberg Times: Live Q &amp; A: Design Systems and theme.json\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25092\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://gutenbergtimes.com/live-q-a-design-systems-and-theme-json/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:62095:\"<p>One of the key challenges of running a site or series of sites at scale is ensuring design consistency and compliance with a design system. During this show, <strong>David Bowman</strong>, principal designer and <strong>Alec Geatches,</strong> JavaScript Developer, both at WordPress VIP will demonstrate the process to export the design system tokens from Figma and import to WordPress.  <strong>Joni Halabi</strong>, Georgetown University, shared how her team at the university works within a different design system. The Panel also discussed WordPress as an enterprise-ready software and Gutenberg being a design system in the making.  The show was hosted by  Birgit Pauli-Haack, curator of the Gutenberg Times.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n<p class=\"has-large-font-size\"><strong>Shared Resources: </strong></p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/Automattic/vip-design-system-bridge\">Repository for the design bridge</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/vip-design-system-bridge/blob/trunk/docs/design-tokens-example/README.md\">Tutorial about Figma Tokens Tutorial </a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/course/develop-your-first-low-code-block-theme/\">Develop Your First Low-Code Block Theme</a></li>\n\n\n\n<li>U<a href=\"https://learn.wordpress.org/courses/#using-the-site-editor\">sing the Site Editor Courses:</a> </li>\n\n\n\n<li>Plugin <a href=\"https://wordpress.org/plugins/create-block-theme/\">Create-Block-Theme</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/41547\">Governing block settings and interactions</a></li>\n\n\n\n<li><a href=\"https://twig.symfony.com/\">Twig: PHP template engine</a></li>\n</ul>\n\n\n\n<p>Also: </p>\n\n\n\n<ul>\n<li><a href=\"https://bigbite.net/2021/02/18/whitepaper-implementing-a-design-system-into-wordpress/\">White paper – Implementing a design system into WordPress</a> by BigBite</li>\n\n\n\n<li><a href=\"https://wpvip.com/2022/12/15/using-a-design-system-with-the-wordpress-block-editor-pt-1-theme-json/\">Using a Design System with the WordPress Block Editor Pt. 1: theme.json</a></li>\n\n\n\n<li><a href=\"https://wpvip.com/2022/12/22/using-a-design-system-with-wordpress-block-types-styles/\">Using a Design System with the WordPress Block Editor Pt 2: Block Types and Styles</a></li>\n\n\n\n<li><a href=\"https://wpvip.com/2022/12/09/figma-to-wordpress/\">Exporting Design System Tokens From Figma to WordPress</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-large-font-size\"><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-strong-introductions-strong\">Introductions</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-strong-finding-and-working-with-design-systems-strong\">Finding and Working with Design Systems</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-strong-figma-and-theme-json-strong\">Figma and Theme.json</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-strong-theme-json-or-classic-theme-strong\">Theme.json or Classic Theme</a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-strong-website-demo-strong\">Website Demo</a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-strong-bidirectional-strong\">Bidirectional</a></li><li><a href=\"https://gutenbergtimes.com/feed/#7-strong-opinions-using-word-press-strong\">Opinions using WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#8-strong-using-core-blocks-strong\">Using Core Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#9-strong-patterns-strong\">Patterns</a></li><li><a href=\"https://gutenbergtimes.com/feed/#10-strong-links-and-syncs-strong\">Links and Syncs</a></li><li><a href=\"https://gutenbergtimes.com/feed/#11-strong-changing-design-practices-how-to-start-strong\">Changing Design Practices &#8211; How to Start</a></li><li><a href=\"https://gutenbergtimes.com/feed/#12-strong-create-block-theme-strong\">Create Block Theme</a></li><li><a href=\"https://gutenbergtimes.com/feed/#13-strong-primer-getting-started-strong\">Primer &#8211; Getting Started</a></li><li><a href=\"https://gutenbergtimes.com/feed/#14-strong-vip-plugins-strong\">VIP Plugins</a></li><li><a href=\"https://gutenbergtimes.com/feed/#15-strong-contact-info-strong\">Contact Info</a></li></ul></div>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\">Transcript </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Welcome, welcome to the 35th Gutenberg Times Live Q and A. Sorry. My name is Birgit Pauli-Haack, and I&#8217;m your host tonight, or this morning, depending on where you are. Thank you all for watching. It&#8217;s great to have you all. And today&#8217;s show, we will discuss how companies and institutions can organize the WordPress sites around established design systems in general. And then how to do this with Figma and WordPress theme.json. The folks of WordPress VIP team build a plugin for the workflow and we will see a demo of it. And later we&#8217;ll also hear how Georgetown University works with the design system. And then we&#8217;ll answer all your questions as well as mine. It&#8217;s the little privilege that I have.</p>\n\n\n\n<p>So I&#8217;m thrilled to have these three experts on the show for you. It&#8217;s David Bowman, principal designer at WordPress VIP, and then we have Joni Halabi, senior developer at Georgetown University, and Alec Geatches, also JavaScript developer at WordPress VIP.</p>\n\n\n\n<p><em>Alec Geatches</em>: Hi.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hi, everybody. Glad you joined me here on this little show. We do proper introduction of course, in a minute. I have just a few housekeeping notes. The questions for those who are watching on YouTube, on the right hand side, you have a chat window, that&#8217;s where you can put your questions and also your comments. And then here on Zoom, we have the Q and A bubble on the bottom and the chat bubble to share your thoughts and questions. And please, please be kind, even if you disagree. This is a family friendly endeavor. And with that out of the way&#8230; I need to group&#8230; Yeah, so we&#8217;ll get into introductions. I have two questions for each of you. From where are you calling in today and what is your day job like? So David, do you want to start and then Alec and then Joni?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"1-strong-introductions-strong\">Introductions</h2>\n\n\n\n<p><em>David Bowman</em>: Sure. I&#8217;m calling in from northern Utah where I work from home here. And my day job, I&#8217;m a principal designer at WordPress VIP. That&#8217;s my background. I&#8217;m a graphic designer by trade, but have gotten into product design and web development via WordPress over the years. And now I work at WordPress VIP, focusing mostly on design systems and on how we can increase enterprises and big organizations to adopt Gutenberg and block theming, which I&#8217;m super stoked about.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>David Bowman</em>: And I&#8217;ll pass&#8230; Should I pass to someone? I&#8217;ll pass to Joni.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Joni Halabi</em>: Oh, thanks. Hi everybody, my name is Joni Halabi. I&#8217;m calling in from the United States in the DC metro area. My day job, I am a senior web developer at Georgetown University, mostly working on WordPress customizations. And my specialty is custom block creation, so that is probably 80% of what I do.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Mm-hmm. Excellent. And it&#8217;s up to you, Alec.</p>\n\n\n\n<p><em>Alec Geatches</em>: Hi, I&#8217;m Alec. I&#8217;m calling in from the States as well. I&#8217;m in Colorado. I work at WordPress VIP along with David, and I&#8217;m a developer. I&#8217;ve been a web developer for 10-plus years. Right now I&#8217;m working on a team that&#8217;s been focused on making the Gutenberg editor work better for enterprising companies. So that&#8217;s some of the stuff we&#8217;re talking about today, like design systems, how to integrate those with WordPress, editor curation, locking down the editor, things like that. And my team&#8217;s also done some work with decoupled slash headless WordPress as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. Awesome. So cutting edge right there. Joni, and you also published on the developer blog about the difference between static blocks and dynamic blocks. And I think that was very helpful to a lot of developers who started out with Gutenberg development. Thank you so much for doing that.</p>\n\n\n\n<p><em>Joni Halabi</em>: Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And Dynamic Blocks will get a little bit more promotion with the interactivity API, but that&#8217;s a different show. But that&#8217;s coming with 6.4, not 6.3, 6.4. So let&#8217;s get into the show.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-strong-finding-and-working-with-design-systems-strong\">Finding and Working with Design Systems</h2>\n\n\n\n<p>For someone who&#8217;s a little bit not so in these big systems, what are design systems and how would you connect them? How do you find them and how do you work with them?</p>\n\n\n\n<p><em>Alec Geatches</em>: David was the first one to explain this to me, so I would defer to David.</p>\n\n\n\n<p><em>David Bowman</em>: I&#8217;ll try to be brief. I have a tendency to ramble and get lost in my thoughts when I&#8217;m talking about design systems, but the textbook definition that I give everybody is that a design system, the purpose of it, is in a classical sense to speed application development. So it makes it easier for designers and developers to work together to build some software application. And there are three parts to it. There&#8217;s code, there&#8217;s code. So it&#8217;s usually a set of reusable components and styles and things. Usually lives in a package that developers pull into their project. There is a UI kit. In our case at WordPress VIP, that&#8217;s a big Figma library, a bunch of Figma files with components and styles and things that mirrors what exists in code. And then there&#8217;s documentation to explain how everything works together. Because it&#8217;s inherently complex, a lot of it needs explaining. We do our best to just make it all smooth and seamless, but at the end of the day, a lot of stuff needs to be explained, so there&#8217;s always a documentation component.</p>\n\n\n\n<p>Those are the three bits. Classically meant for just speeding application development. I think what we&#8217;ll talk about today, and why I&#8217;m so excited about Gutenberg is that I think that Gutenberg adds content creators and page builders into the design system equation. So when you&#8217;re building a WordPress theme, you&#8217;re not really building a website. If you&#8217;re building a block theme, you&#8217;re building a tool that someone else is going to use to actually build the website. And so you have to include the content creator in the design system club, which I think Gutenberg blocks do pretty effectively. But yeah, that&#8217;s, I guess, how WordPress makes it a little different. That&#8217;s my answer. If you ask anyone, everyone has different opinions, but that&#8217;s mine.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Alec, Joni, do you have a different opinion? Do you want to add something to it?</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, so at Georgetown, we&#8217;re building our own system of websites. We support just about 400 websites on our WordPress systems, and they fall under one of two different themes. But we built this design system&#8230; It&#8217;s a homegrown system that is inspired by atomic design, but we&#8217;re not using those atomic terms. So we came up with our own terms. So we have foundational elements, and then we have those come together to make blocks and those will come together to make page templates and so on and so on. And one of our goals at Georgetown is to really lock down our design system to be super, super hyper specific to the university because we have some very strict visual identity guidelines. We strive to adhere to WCAG 2.1, AA standards for accessibility. And we have a whole host of just interactivity opinions that we want to at least try to enforce across all of our websites.</p>\n\n\n\n<p>So what we do on my team, I&#8217;m part of the web services team there, we are creating this system that&#8217;s going to be used by individuals across the university who are in charge of their own websites. And some of these people, they are pretty well versed in web technologies and some of them, they have day jobs, and this is something that they do on the side. And it&#8217;s part of that infamous, other duties as prescribed, sentence that we all see in our job descriptions. So we might have somebody working on their website for their office, and they don&#8217;t know HTML, so we&#8217;re trying to make things as easy as possible with our design systems.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-strong-figma-and-theme-json-strong\">Figma and Theme.json</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. But what you did on WordPress VIP was also to&#8230; You said the word Figma, which is a design system by itself where you can build them, and then you bridged it to&#8230; Because WordPress block themes have this theme.json, which is pretty much a machine readable code of design styles and settings pretty much. And how to get it from the Figma into a block theme or theme.json, so you can spin up new sites. Is that how I explained that right?</p>\n\n\n\n<p><em>David Bowman</em>: Pretty much, yeah. I think the way that, and I have a demo that I&#8217;ll show of exactly how this works, but the way that our design system workflow works, I think we&#8217;re similar to how you guys run, Joni, but at a much smaller scale, because we&#8217;re a company, but we only maintain really two marketing sites right now, some documentation sites, so it&#8217;s a much smaller footprint. But we know that there are organizations like Georgetown and like every other enterprise company out there that runs a significant web presence where they&#8217;ve got just a ton of stuff. There&#8217;s all sorts, and it&#8217;s all different. Everyone has their own special needs. And at the end of the day, something you said, Joni, that really struck me, was that at the end of the day, the people that are actually pulling the levers on the website might as well be bloggers.</p>\n\n\n\n<p>They&#8217;re not some developer. A lot of times they&#8217;re doing it and they don&#8217;t want to, because they don&#8217;t have a lot of time, and they just want it to be easy. And that&#8217;s actually why I think WordPress is most viable as an enterprise product. I think WordPress is perfect for this, because it&#8217;s designed for bloggers, it&#8217;s designed to be easy, and at the end of the day, everyone at work, that&#8217;s what they are. They&#8217;re not all a bunch of fancy web experts. And Gutenberg really provides a way for us to deliver that design system to them in a way that they can actually make use of it. And I guess the way that we do that, our flow is that our designers make stuff in Figma. We are designing our blocks, we&#8217;re designing our page layouts, we design, pick our colors, design all sorts of things.</p>\n\n\n\n<p>And then a large portion of that gets exported from Figma as something called design tokens, which is a fancy term in the design system world, and it&#8217;s a variable. You can basically think of it as a variable. If you want to be philosophical about it, it&#8217;s a design decision represented in a little piece of code, and it&#8217;s something like, &#8220;My brand color is red.&#8221; That&#8217;s how you would say it in words. And a bunch of those get exported from Figma to a code base in GitHub where we store our design system. And then that gets further exported from the design system down into theme.json in our WordPress applications. And the introduction of theme.json, is like, I can&#8217;t overstate how revolutionary that was for WordPress applications.</p>\n\n\n\n<p>I say all the time that Gutenberg is a design system, and it hasn&#8217;t realized it yet. It&#8217;s in its teenage years, it&#8217;s still coming of age and finding itself, and give it another five years and it&#8217;s going to realize what it is, it&#8217;s design system. And that theme.json file is the config for your design system and gives you a landing place for all of those design decisions that you&#8217;ve made. And because it&#8217;s all nice in code in a nice little json file, you can automate all that.</p>\n\n\n\n<p>And that&#8217;s my litmus test for whether something is a, quote, real design system or not, is that if at any point of the step from designer thinks of something, developer builds it, content creator uses it, anywhere along that chain, if you have to rely on a human API to make sure something works, like if someone has to copy paste something or refer to a style guide or copy stuff out of an inspect mode and Figma, then it&#8217;s not a real design system. If you want to be real hard-nosed about it. But the goal is all the robots do the work for you, but theme.json lets you do that.</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah. If I can interject. To piggyback off of that. Theme.json was such a game changer for us, because&#8230; I alluded to this before, we really want to lock down our designs and out of the box WordPress, it gives you so many options in terms of color palettes and typography settings. I personally love that for a one-off site that is not affiliated with Georgetown. If I were to go and build a site, having that many options is great. Within the Georgetown universe, we don&#8217;t want that. We don&#8217;t want that. So being able to say, &#8220;I want to turn off custom palettes. I want to restrict the palettes to just our approved colors. I don&#8217;t want people to mess with the typography settings.&#8221; You get two choices for sizes. It has been absolutely wonderful. As soon as we saw that come into Core, we added it to our theme, and it was love, just love.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-strong-theme-json-or-classic-theme-strong\">Theme.json or Classic Theme</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Are you using theme.json on a classic theme, or are you moving into block themes as well? So gradually?</p>\n\n\n\n<p><em>Joni Halabi</em>: So we&#8217;re currently using it on a classic theme, and this is a much longer story and probably a different talk. I did an experiment to see how easy it was to convert that classic theme into a block theme and also incorporate our design system, which uses external twig templates into that block theme. And it was an amazing experiment and a very complicated experiment, and I just spoke about that at a conference last week. So if anybody&#8217;s interested, you can follow me. I&#8217;m sure the video will be up in a month or so.</p>\n\n\n\n<p><em>David Bowman</em>: Oh, I want to watch that video. Absolutely. I want to watch that video.</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s a real journey whenever someone embarks on that task. That&#8217;s a real quest.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I will do a switch from my site from a classic theme to a block thing I haven&#8217;t migrated yet. Although I&#8217;m talking with people about block themes since 2020, the first time about it, but I still haven&#8217;t done the switch yet. But talking about videos, I think, David, you have a demo for us, and I think that&#8217;s now a good place to play that and to talk about it afterwards.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"5-strong-website-demo-strong\">Website Demo</h2>\n\n\n\n<p><em>David Bowman</em>: Awesome. I will play this demo and&#8230; Yeah, it&#8217;s a&#8230; Oh, hang on, I got to share my sound. Can&#8217;t forget that one. Yeah, let&#8217;s play. It&#8217;s pretty casual demo, but it gives you a little taste of how we&#8217;re using this stuff on our websites with our WordPress theme and how we use blocks. Let&#8217;s start from the beginning. Here we go.</p>\n\n\n\n<p>Hi, I wanted to give a quick demo to show you how we integrate Figma with our WordPress theme and how we use blocks as an extension of our design system. So here we are in Figma, and the foundation of our design system is our design tokens. And these mainly manifest in Figma as color and type styles, but we use a lot of other tokens in production for things like spacing, border radius. You use design tokens for all sorts of things. They have a lot of uses.</p>\n\n\n\n<p>So using a common token structure between our applications is a big part of how our design system works smoothly and has good interoperability. And this here, what we&#8217;re looking at is the file that manages all the color and type styles that we use across our designs. And to link all these things up to our tokens and ultimately to our WordPress theme, our tokens live in GitHub, we use this plugin here called Token Studio. And this is a community created plugin, and it provides two main things for us. It gives us a way to push design changes from Figma here to GitHub, and it also gives us a way to manage design tokens that Figma doesn&#8217;t support right now. And it lets us do that within our design tool where we&#8217;re working on these things, and that makes the code a lot more accessible to designers.</p>\n\n\n\n<p>So to demonstrate how all of this works, I&#8217;m going to show you how we can swap themes, and then I&#8217;ll show you what that looks like on the front end of an application and then what that looks like in the block editor. So we use themes and there&#8217;s a lot to this plugin. There&#8217;s videos, there&#8217;s documentation, there&#8217;s a lot going on here. There&#8217;s a lot going on here, but right now, this is the file that manages the styles for <a href=\"https://wpvip.com/\">wpvip.com</a>, and I&#8217;m going to go ahead and swap it for the token set for our other application Parse.ly, which you can see you swap it and it swaps out all the colors. So colors is the easiest place to see this change happening.</p>\n\n\n\n<p>So there you go. So we&#8217;ve effectively swapped everything for a different set of tokens. So if we were to publish this library, it would update all of our designs with new values. So you can see how that switching works. And likewise, if a designer were to make a change to one of these, say they want to make the background color something else, they could make that change here, and then go ahead and push it up to GitHub. And from there we go to our tool, to the Design Bridge tool to get the tokens from the standard format in which they&#8217;re stored out into our WordPress theme. So I will show you that next.</p>\n\n\n\n<p>So here we are. This is our design system repository that houses all of our tokens and then all the components of our design system for our React application, for our dashboard. So in terms of WordPress or WordPress applications, this just houses the tokens. Everything else in terms of components and things are the Gutenberg blocks. That&#8217;s all coming from WordPress Core, and then any custom block plugins that we&#8217;ve made. So what you&#8217;re looking at here, is this is how all of our design tokens are saved. So yeah, it&#8217;s a standard format. The W3C is working on a new web standard for design tokens, and this is what Token Studio outputs to GitHub. And you see that we&#8217;re able to alias between tokens. We have a core set that has all of our underlying color palettes and type scales and things, and we, from all those raw values, curate the values that are going to get used in our WordPress applications.</p>\n\n\n\n<p>So you can see here our body one short style are these attributes that then get applied as CSS in our WordPress application. So this is how they&#8217;re stored. And in order to get things from here into theme.json, where they can be applied to our blocks, into our global styles, we created a tool called the Design Bridge. So I&#8217;m going to go ahead and I&#8217;m going to run it. It doesn&#8217;t look like a whole lot, but I&#8217;ll show you what it does on the other side. So it runs in the command line right now. And we did that so that people can automate this, you can work it into an existing dev workflow to just make it more flexible. It could run as a GitHub action. You can do a lot to automate this process.</p>\n\n\n\n<p>But for right now, I&#8217;m going to do it manually. And all it does, is it takes two arguments. So it takes the token path, which is the path to where the tokens live, which is right here, what we&#8217;re looking at. And then it takes the path to the theme where it will look for a theme.json file, and then you pass it the value of a token theme. So these are things that Token Studio creates to tell it what token files to activate basically. And then you choose whether you want it to overwrite your existing theme.json file or not. And we&#8217;ll go ahead and hit enter. It will do its magic, and then it will tell you that it&#8217;s done. Say, &#8220;Hey, we did it.&#8221; So next we&#8217;ll pop over to pop to our WordPress application and see what that looks like.</p>\n\n\n\n<p>So here we are in our theme.json file, and what our tool does, is it outputs all of our design tokens as variables in the custom object in theme.json. So if you&#8217;ve done any amount of theme.json work and working with global styles, you&#8217;ll know there&#8217;s this little custom object that sits inside of the settings object in theme.json. And this is just a blank thing that you can put whatever you want in. And everything that you put in here will be exposed to CSS variables along with any global styles that you are adding. So this has just been reformatted and output here into theme.json. And the format&#8217;s very similar. It&#8217;s not exactly the standard format, but it is pretty close. But it does go ahead and output the design system, essentially.</p>\n\n\n\n<p>And so what this does is it exposes it in a predictable way in the DOM as CSS variables that are named according to the standard way that Gutenberg names all of its CSS variables. And that means that you can reference them in block development and you can point all of your blocks and all the work you&#8217;re doing to style your theme. You can point it at a constant set of variables that can be swapped out exactly the same way that we swapped out the styles and Figma, like I just showed you, you can do the same thing on a WordPress application.</p>\n\n\n\n<p>Yeah, so I&#8217;ll show you what that looks like now. All right. So here we are. This is Parse.ly. This is the website for our content analytics product at WordPress VIP. And this is one of the two web applications right now that we have running on our theme that is set up to integrate with our tool here. And as you can see, it looks all green and looks branded appropriately. And I&#8217;m going to go ahead and swap the tokens and you can see what happens when it does that. So I&#8217;m going to go ahead and run our sync and do it. And there you go. You can see what happens is it changes, you see font styles, you see colors changing. It&#8217;s not a huge change, because we haven&#8217;t designed it to be very divergent between the brands, but you do see the front end styles get swapped out and it works pretty well and makes it pretty easy to manage a multi-brand system of WordPress applications. And so next, let&#8217;s look at what this looks like in the block editor.</p>\n\n\n\n<p>Okay, so now we&#8217;re in a local dev site here, and this for me is really where the magic and the value of this really happens. So this is a sample page and we&#8217;ve got this set up with our styles. We&#8217;ve got this set up to be pulling from the global styles we&#8217;ve defined, all the block styles we&#8217;ve defined. You can see in here we&#8217;ve got our pallets defined for this particular brand, Parse.ly, and these are coming from theme.json. And so if we go ahead and run the same sync&#8230; I&#8217;m going to run the sync and then refresh the page here. You can see what happens if I swap the theme from Parse.ly back to WPVIP. And looks like that sink is done. I&#8217;m going to refresh. And you see everything changed. Everything goes gold. You get the brand colors from VIP. And this stuff is achievable with CSS. You can swap out CSS styles, you can point at a different style sheet.</p>\n\n\n\n<p>But I think what makes the integration in theme.json super valuable is that you get all of your block options are updated as well, because all of these are also coming from theme.json. So not only are you getting front end style updates, but you&#8217;re getting updates in interactivity in the backend, which is great. That&#8217;s really what you want to be able to make a good user experience and to be able to manage multiple user experiences and have it all get integrated easily with your design tooling. So yeah, there you go. That&#8217;s the high level, a lot of detail to talk about, but this is the quick rundown of what the tool can do.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Excellent.</p>\n\n\n\n<p><em>David Bowman</em>: There you go.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much for the demo. It&#8217;s kind of whose head is spinning, but I really love that flow from the designers work here, and then you can just write some script or run some scripts and then you have it all in the theme already. Does it also work backwards, or is it only one direction?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"6-strong-bidirectional-strong\">Bidirectional</h2>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s bidirectional. What it does is it sets up&#8230; Our GitHub repo, our design system repo is the actual source of truth. And so that means that a developer can use an IDE to edit that code file and save it. Or a designer can use Figma to edit that same file and save it and its version controlled with Git and they can both pull down each other&#8217;s changes and it brings designers into an actual dev workflow on a design system. At least for the tokens. Just for the tokens.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Just for the tokens, yeah. We don&#8217;t have any questions from the audience right now, but Joni, do you have any questions? Or David and Alec?</p>\n\n\n\n<p><em>Joni Halabi</em>: I don&#8217;t know where to start.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Are you muted or&#8230; No.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"7-strong-opinions-using-word-press-strong\">Opinions using WordPress</h2>\n\n\n\n<p><em>Joni Halabi</em>: I was at a loss for words. It was a very cool demo. I&#8217;m very excited by that switch where both the front end and the block options change, because that&#8217;s something that could&#8230; So at Georgetown we have two different themes and they look pretty different. They&#8217;re similar in terms of colors, but not exactly the same, slightly different fonts, slightly different colors. And to be able to have the ability to switch between the two&#8230; Because we have a lot of sites who are wanting one theme over the other.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>David Bowman</em>: I mean I have questions for you. I am extremely curious about&#8230; Because like I said, everyone does this their own way. Every organization that I know that has a design system&#8230; I think there&#8217;s a reason that every big company out there has made their own. Google made one, Amazon made one, Salesforce. They all make their own because they all do it differently. And so I guess, is WordPress your primary user facing surface that you&#8217;re maintaining or do you have other stuff? Do you have React applications or is it pretty much just WordPress sites?</p>\n\n\n\n<p><em>Joni Halabi</em>: For our team, it&#8217;s pretty much just WordPress sites. The history of our team, we&#8217;ve actually worked with a number of CMSs. I think this might be our fourth or fifth overall, but WordPress is our primary UI just because it&#8217;s a very easy UI, especially for those content editors who don&#8217;t have a ton of experience, it&#8217;s easy for them to pick up. And I feel like it&#8217;s gotten easier. I&#8217;m hoping it&#8217;s gotten easier since the classic editor. But yeah, I mean in the future, one of the big reasons why we created our own design system, we call it our pattern library, and the reason why that pattern library is external is in the future, if we do have some external application that we want to hook into or we have a piece of software like an LMS or something that will let us customize the front end, we can say, &#8220;Hey, you can go grab this twig file and there&#8217;s your custom header, or here&#8217;s your custom footer, or here is the color palette that we want this to use.&#8221;</p>\n\n\n\n<p>We wanted something that was a little bit more universal and not necessarily in WordPress. So we built this pattern library. Actually my colleague was the one who really architected the entire thing. It&#8217;s built-in kss-node and it&#8217;s really slick. We can take those styles and take those twig files and import them into our WordPress build, but we also have a front end interface for this pattern library that includes documentation and different variations on patterns and such so that somebody who just wants to see all of these different foundational elements or what a block looks like, they can do that with a front end that isn&#8217;t necessarily associated with our WordPress installation.</p>\n\n\n\n<p><em>David Bowman</em>: That&#8217;s super interesting, because it sounds like you guys are doing the part of the integration that has terrified me up until now. I think design tokens are&#8230; Well, not easy, but it&#8217;s easier. They&#8217;re just little variables. They&#8217;re little bits of data that you can pass back and forth, and it&#8217;s a mapping exercise to get it to go to the right place. But when it comes to actually having&#8230; Like if you look at another design system, there&#8217;s their tokens, and then they have their components and all of those components, when we started working on design system integration stuff, I went under the assumption that the WordPress Core blocks are your component library. That if you&#8217;re integrating with WordPress, you get a component library and you should think of it as another framework that you support.</p>\n\n\n\n<p>So Google material supports React and View, and if your design system supports library A also supports Gutenberg. And Gutenberg is very opinionated about what blocks it has and how you use them. And so I took all that for just for granted. I was like, &#8220;Cool, we&#8217;re going to assume core blocks and go from there and then build some custom stuff.&#8221; But it sounds like you&#8217;ve gotten much further than that. You have this whole&#8230; You got a whole thing run in to put all the core blocks together. Are you using Core blocks? What are you&#8230; I guess, tell me more about this.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"8-strong-using-core-blocks-strong\">Using Core Blocks</h2>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, so that, that&#8217;s actually the core part of my job. So we are using Core blocks because it was very important for us to be able to maintain that basic, basic blocks, so header list, paragraph image, things like that. But we&#8217;ve also taken away access of some of the blocks that we don&#8217;t necessarily want our content editors using. So a lot of the full site editing focused blocks, so like page title query. I&#8217;ve said this before, we like lock things down. So we&#8217;ve locked those down. And to replace those blocks, we&#8217;ve actually created a number of custom blocks.</p>\n\n\n\n<p>So our custom blocks will give our content editors the ability to grab posts by category, which, yes, there&#8217;s a core block for that, but we also really, really wanted control over the markup for that scenario. We have a bunch of blocks that will allow you to have an image and text next to each other or video and text next to each other. And again, for us, it&#8217;s a control issue. We really want control over that markup. So all of the blocks that I&#8217;ve written to be custom for installation, they are dynamic blocks. And the beauty of the dynamic block is it makes it really, really easy to hook those dynamic blocks. We just take the render function in PHP, we hook that via timber to our twig files from the external pattern library. So we have one block we call premo with image.</p>\n\n\n\n<p>So it&#8217;s an image next to some text and maybe a call to action link. And what I&#8217;m doing in that render function is I&#8217;m just taking all of that information, the image object information, the text, the link, and I&#8217;m sending it as an array, just an array of parameters to my twig file in the pattern library. And the pattern library does the rest on the front end. So it means if we ever want to switch out the front end, if we discover, &#8220;Hey, we have an accessibility bug. Our CTA link isn&#8217;t really accessible, we need to change the Aria label on it, or we need to change the color contrast on this button,&#8221; we can do that within the pattern library. And WordPress is unaffected by it, so we don&#8217;t have to worry about things like deprecation errors. We don&#8217;t have to worry about having people go in and update their page to a new version of the block or anything like that. It just automatically happens as we make those changes to our pattern library.</p>\n\n\n\n<p><em>David Bowman</em>: That sounds awesome. I have so many questions, but I&#8217;m talking a lot. Alec, do you have any thoughts?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"9-strong-patterns-strong\">Patterns</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Before you get to your questions, I have a small clarification, when you talk about patterns, you are not talking about WordPress patterns, or are you?</p>\n\n\n\n<p><em>Joni Halabi</em>: I am not. No, sorry, I am talking about design patterns. We&#8217;re still struggling with terminology because pattern is a very loaded word. It could be WordPress patterns, it could be design patterns. Block is another big one that we struggle with because there&#8217;s WordPress blocks, but then there&#8217;s also blocks of information and blocks of HTML. And so thank you for&#8230;</p>\n\n\n\n<p><em>David Bowman</em>: Even theme means like 10 things in different contexts.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. When you talk about Figma themes, it&#8217;s like, &#8220;Oh yeah, those are totally different than WordPress themes.&#8221;</p>\n\n\n\n<p><em>David Bowman</em>: Everyone&#8217;s got a theme. There&#8217;s a lot. You got to really keep your theme straight.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"10-strong-links-and-syncs-strong\">Links and Syncs</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So we got one question, and thank you Alec, for answering that, from Bridget Vessel. Is that the best place to get the links? And she linked to a page on WordPress VIP, and then Alec had added two additional links there. And I will put those also in the show notes after the show.</p>\n\n\n\n<p><em>Alec Geatches</em>: Okay, yeah, I can talk about that a little bit if that&#8217;s okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, please do.</p>\n\n\n\n<p><em>Alec Geatches</em>: So when we first designed this with David, we wanted to be able to&#8230; If you watched what David was doing, have no idea what happened or you just want to try it yourself, we have this long readme, or it&#8217;s in our design system bridge repository, but it&#8217;s a whole walkthrough. We have a little tiny material UI, basic design system, Figma document. You can clone that. You can see how the Figma tokens plugin that David was using, connects to it and how the token sync. And then you can use our tool to pull down those tokens and sync it up with a theme.json and then you can like, &#8220;Oh look, the color changed as I made a change in Figma, synced it, now it&#8217;s in WordPress,&#8221; and see how all of those links work together. The secret sauce in that is that custom section in theme.json. So that&#8217;s where you can dump all of your CSS variables, mostly colors, typography, things like that, units, and then you can just re-reference those in other parts of your theme.json.</p>\n\n\n\n<p>So like your palette, you can say, &#8220;Give me the primary color.&#8221; And then in Figma, you can change your primary color. It gets synced to the same spot. Then your block pulls in a different primary color for its options. It&#8217;s all magical, but it&#8217;s really based off of that custom section. And what the design system bridge does, is it reads all that json, puts it in a format that&#8217;s comfortable for CSS and for WordPress using Style Dictionary, which is this Amazon product. It&#8217;s basically used for design tokens for this exact purpose or similar, where you have some design constructs, you want to put them in a different format. So we have some transforms in there. It&#8217;s like add some pixel units here. It&#8217;s really basic stuff. For the most part, we take that json, modify it a bit, put it right in the theme.json custom list, and from there it just works. Anyways, check out the tutorial I linked. We can put that in the show notes for a walkthrough, it&#8217;s really simple. You might not learn a lot from it, but it can at least show you the full end-to-end process.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you.</p>\n\n\n\n<p><em>David Bowman</em>: As soon as you implement it, as soon as you use it a couple of times, it feels really good. Changing something in Figma and then watching it update in WordPress theme. It&#8217;s pretty cool.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"11-strong-changing-design-practices-how-to-start-strong\">Changing Design Practices &#8211; How to Start</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I can imagine how that&#8230; Amazing. So we get from an attendee, we have a developer who&#8217;s deep in the Gutenberg ecosystem and he has a question about how would you go about inspiring hesitant designers to a) embrace things like the site editor style book, and b) adapt their existing, if applicable, design systems like Figma, XD and whatever those two become post-acquisition, to work more in what Gutenberg already provides. I&#8217;m struggling to achieve internal buy-in to change design practices, even though I have full internal buy-in from ownership for Gutenberg and block-based theming. That&#8217;s the loaded question, right? The million dollar question. So, thank you for that question. That&#8217;s a really good one. Yeah. Who wants to take it on first? You all work with developers.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s a good question.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So how do you embrace things like site editor style book?</p>\n\n\n\n<p><em>David Bowman</em>: I guess I would, maybe this isn&#8217;t an answer to the question, I&#8217;ve been talking a lot again, but I&#8217;ll just say this quickly. As a designer who went on this journey who was like, &#8220;I got to use Gutenberg, let&#8217;s figure it out,&#8221; and having to go through that process, a couple of things were really helpful to me. The first one was to maybe as a non-starter for some people, but just get into block theme development. Block theme development is not hard. And I think that one of the best things about block themes is that the code of a WordPress theme includes very little PHP now, it includes very little JavaScript by default. And if you want to start doing things like getting custom styles and really doing things, it&#8217;s pretty simple. And the meat of their block theme development, so much of it is happening in json files and block markup files that are HTML, that it&#8217;s very accessible.</p>\n\n\n\n<p>And so if you&#8217;re a designer that is wanting to understand Gutenberg, just go build a block theme. Go really get in there and try and figure it out, because doing that, you&#8217;ll see that there are a lot of places where you can really integrate it with what you already have. So theme.json, getting tokens out of Figma and into theme.json is&#8230; Just that is a really big step. And that&#8217;s the other piece of advice I would give is to just focus on small things. Just because Gutenberg is so opinionated and truly has not realized that it&#8217;s a design system yet.</p>\n\n\n\n<p>There&#8217;s a lot of the dynamic blocks, static blocks, there&#8217;s a lot, there&#8217;s a lot of pitfalls, but if you can focus on the small things, like getting global styles hooked up to your existing design styles, you&#8217;ll get a long way. At least that was my experience, is that just doing those things, I was like, &#8220;Oh, cool, I can actually really craft this experience in the editor and I can craft the front end and I can influence it as a designer without having to go bug a developer to make a PR for me.&#8221; Often I can just go and change it. I can go change my Figma files and that was pretty rad. That was longer than I wanted it to be, but that was my answer.</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, I would definitely echo that. But I think it almost feels like there is a social aspect to this question as well. And I would want to dig deeper into why the designers are hesitant about getting their hands in there. It almost seems like, are they feeling overwhelmed? Are they feeling like they don&#8217;t have the technical chops for it? I would start to have those conversations with the designers and maybe developers and designers can get into a room, virtual or physical, however you all work, and just see where that pain point is. Sometimes I know personally when I feel like oh my goodness, something is really difficult, something is just mentally blocking me from starting that task, it might be easier to talk it out or to have somebody hold my hand, at least for the first couple of steps, and maybe that will give them the inspiration to just jump in.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"12-strong-create-block-theme-strong\">Create Block Theme</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And yeah, I understand that not everybody who gets into a car knows how to drive it. You need somebody to show it to you. Or another metaphor is if books would help or documentation would help, there wouldn&#8217;t be universities attached to libraries. So what I shared in the chat window was two links. One is to a course on learn.WordPress. That is develop your first low-code block theme. So to get a scaffolding and use the tools that are in the site editor, and they have been really expanding and they will be with 6.3. I don&#8217;t know if you are watching here and you want to see what&#8217;s coming, 6.3, there was a product walkthrough last night and it will be published on news on WordPress. And then the other link that I shared is just a tag of other courses on how to use the site editor.</p>\n\n\n\n<p>I think it really helps to know how a content creator is going to use the site editor as well to help with the design and what would be needed. Of course, that&#8217;s the beginning. So the theme team, WordPress theme team, also developed a plugin. It&#8217;s called Create block theme plugin, which also lets you then create style variation, create patterns, as well as export the theme from the site so you can upload it to another site. That&#8217;s helping with the workflow of block themes development. And I&#8217;m sure I&#8217;m going to get the link when I&#8217;m doing it live and talking. That&#8217;s never a good thing.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s easy to search for. Create block theme.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Create block theme.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s a good one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and it has its active development and the designers that are actually creating themes for the repository, they&#8217;re start out with that plugin and then do some modifications later on if they needed to. But it&#8217;s very good to create some.</p>\n\n\n\n<p><em>David Bowman</em>: I would add maybe one little note to the create block theme thing, which is that&#8230; So the site editor and tools like create block theme, it&#8217;s rapidly getting so much better to the point that their goal is to have the site editor be a design tool so that you can sit down and craft a theme and be able to use it like a design tool. And it&#8217;s going to get there and it&#8217;s getting there pretty quickly. But I would, maybe this is a spicy hot take for me, is that I would not think of WordPress as a no-code solution. There are definitely, if you need that and you want to use WordPress, there&#8217;s options for you. But as just a designer being like, &#8220;Hey, I want to make a website. I need a no-code solution to make a website,&#8221; there&#8217;s stuff out there that&#8217;s really good that&#8217;s not WordPress.</p>\n\n\n\n<p>And I think you give up a lot when you go with those, but you do get no-code. But what WordPress has, that some of these other things don&#8217;t, is that the code that you need to make a WordPress theme, it&#8217;s really easy, and it might not be fully, “no-code,” but it is very accessible code. And if you have ever, ever, ever made a website ever, like in college, ever, if you&#8217;ve ever done it, you can figure out how to do a block theme. And in addition to really digging into the site editor, go read the docs on theme.json. If you go read the docs on theme.json, you&#8217;ll be like, &#8220;Oh, it&#8217;s just a json file.&#8221; And you can go and find yourself developing, quote, block themes before you know it. And that&#8217;s pretty rad.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I like that analogy. There was this idea that block development raises the bar for entry. Because with the JavaScript and the React and the build tool and all that, the theme.json, got us back to the tinkering kind. We want to, &#8220;Oh, I want to make this border bigger, or I want to make that color more red. And I go into the theme.json and I just change it and boom, it&#8217;s done.&#8221; So it really is a good way to get your hands dirty again, with a little bit of code. We got some more information from our developer and they said, &#8220;Thank you all. I&#8217;m not certain my design colleagues will feel comfortable diving into WordPress themselves based on our experience together. I myself am very comfortable with coding block themes, SCSS under the hood and such, and how once I&#8217;m done, we set up the theme.json, that the process is largely no-code. It&#8217;s a whole new world.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"13-strong-primer-getting-started-strong\">Primer &#8211; Getting Started</h2>\n\n\n\n<p>As a more overarching question for David and all, Figma or otherwise, what would be a good primer to share with my designers who I think are intimidated by development&#8217;s expectations. Now that I&#8217;m working exclusively in Gutenberg, I&#8217;m suspicious that there isn&#8217;t a robust design system in place on their end. And the question I ask when it comes to populating my theme.json are challenging their current practices. Is there a good getting started with web design systems resource you would recommend to them? And I give it back to David or Alec or Joni?</p>\n\n\n\n<p><em>David Bowman</em>: That&#8217;s a good question and I&#8217;ll tell you what resources I used when I was doing this, because I think a lot of, “web designers,” nowadays you learn&#8230; If you&#8217;re as old as me and learn to doing stuff in Photoshop and you&#8217;re used to&#8230; Design systems is a relatively new thing. And it is made designing things for the web more technical, but it&#8217;s also made it a lot more efficient and you hand off to devs easier. There&#8217;s a lot of benefits to it. And the way that I got into design systems was by honestly mostly by checking out existing design systems. And the big guys like IBM Carbon was very influential for me. Google material is ubiquitous in our lives. If you go check out the documentation sites for these big design systems, they really lay it out very nicely, because they&#8217;ve got whole teams supporting them.</p>\n\n\n\n<p>And so they&#8217;re like, &#8220;Here, this is our design system. Here&#8217;s our Figma files that you use. Here&#8217;s this.&#8221; They&#8217;re all open source and you can download and play with them and build stuff with them. That can be a lot. If you&#8217;re really interested in getting into design systems, that&#8217;s a great place to start. If it&#8217;s too much, honestly Figma. If you&#8217;re not already using Figma, you should probably be using Figma. And Figma, with their latest releases at their config conference just a few weeks ago, introduced variables into Figma. They introduced modes into Figma. And so they now natively support some really fundamental design system concepts and have a bunch of really great little tutorial files that you can go play with, and this is how it works. You change from light mode to dark mode. And it&#8217;s mirroring how it&#8217;s going to work in code and point them at those. If they&#8217;re not Figma people then tell them to get into Figma. Hopefully Adobe XD just dies a slow death and they just, which I think is their plan.</p>\n\n\n\n<p><em>Alec Geatches</em>: Yeah, I&#8217;d also say searching Figma templates or just the word design systems or the words you can find a whole bunch, everything from these huge ones with 10 pages of buttons and things to just a little baby one that&#8217;s just a color palette and then you can take one and change it up. And that&#8217;s how I learned about them and got a hands-on knowledge.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Joni, do you have any input?</p>\n\n\n\n<p><em>Joni Halabi</em>: I was just going to say, I&#8217;m a developer. Everything I suggest is going to be code, so you probably don&#8217;t want to take a suggestion from me, but Figma looks amazing.</p>\n\n\n\n<p><em>David Bowman</em>: Figma&#8217;s great.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"14-strong-vip-plugins-strong\">VIP Plugins</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. So I&#8217;m really glad that we all got together today. We&#8217;re leading up on the hour. I have two questions for you. I know VIP is also working on two other plugins. Do you want to talk about it Alec, briefly, so we can wet the&#8230;</p>\n\n\n\n<p><em>Alec Geatches</em>: The first one still internal beta, so I don&#8217;t have a good link for it, but it&#8217;s super relevant to what we&#8217;ve been talking about, what Joni was talking about. Just locking things down. David posted here. Let me find that link real quick. I had that ready. A great issue in the Gutenberg repository last year and it was talking about theme.json. It&#8217;s great for design systems, but it loses the scope of these higher level design system things like if you embed this block in a hero, how does it look different now? Usually that&#8217;s part of a design system. These typography options are available here but not here. And theme.json just has a flat block structure. Every block has these settings when you design them that way in theme.json. Where was I going with this?</p>\n\n\n\n<p>We&#8217;re working on a plug in that is looking to extend Gutenberg and the way that David is talking about, but also have a very allow list approach to everything which blocks you have, which roles get access to them, which block settings you have, things like that. So we want to make this super enterprise focused, because Gutenberg gives you the ability to just do crazy things. Even if you lock it down to a design system, you still get a lot of options for a lot of things and it&#8217;s very hard to get those all out if you&#8217;re running 40 websites for other people. So we&#8217;re working on a plugin that…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Or 400.</p>\n\n\n\n<p><em>Alec Geatches</em>: Yeah, yeah. Or 4,000 or yeah. WordPress goes crazy. So yeah, we&#8217;ll have more information when that becomes public or when we talk about it more. But anyways, we&#8217;ve been heads deep in this trying to work with Gutenberg to allow these enterprise things, because Gutenberg is meant to be customizable. We don&#8217;t want to be customizable at all, want everyone&#8217;s job to be easy and not have that many typography options. And so the other plugin that we&#8217;re working on…</p>\n\n\n\n<p>Yeah, just have good options and not that many of them. And the other thing that we worked on, this is released now, it&#8217;s called the block data API. This is a headless or decoupled thing, but there&#8217;s this issue with the way that post work in Gutenberg that make it tricky to use sometimes in like a node. If you have a node front end and you want to consume that, pretty much for a post, if you use the rest API, you just get a big blob of HTML. And it&#8217;s got class names in it and sometimes it&#8217;s got styling in it and there&#8217;s not a lot you can do with it other than just put it on the page and try to supply enough styles so that it looks decent.</p>\n\n\n\n<p>But it can be hard to map onto custom components and things. There are ways to do it, but it&#8217;s pretty tricky. So we added this block data API. If you just search that in Google, you&#8217;ll find it. Check it out, look at the first GIF. It explains how it works, but it&#8217;s just we read through the HTML, parse it into json, and then pass that back. So you just get a bunch of json that you can map onto your own custom components instead of just having to rely on HTML string somewhere. So that&#8217;s pretty cool. We just released it for the first time this year. We&#8217;ve got one customer who will be launching it soon. I don&#8217;t think I can say any more specific on either part of that, but pretty cool.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s going to be big.</p>\n\n\n\n<p><em>Alec Geatches</em>: I&#8217;m excited about that.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s going to be cool.</p>\n\n\n\n<p><em>Alec Geatches</em>: Yep. Anyway, so those are the two main things our team&#8217;s been working on.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, so there are quite a few enterprise companies who actually use WordPress as a content creation tool, but not on the front end, because they need other data match up with things. So yeah, the headless is the way that they go via the rest API. So that block data API is probably going to be embraced by quite a few agencies as well and not just the clients of VIP.</p>\n\n\n\n<p><em>Alec Geatches</em>: Yeah, hopefully.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"15-strong-contact-info-strong\">Contact Info</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, we do. So we have three minutes to go. If the viewers want to get in touch with you, what&#8217;s a good place to reach you? Joni? Or do you have anything else that you couldn&#8217;t talk about but you want everybody to know?</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, if folks want to reach me, you can find my contact info on my website. It&#8217;s <a href=\"https://jhalabi.com/\">jhalabi.com</a>. I&#8217;m also @jonihalabi on most socials.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. Thank you. Alec and David?</p>\n\n\n\n<p><em>Alec Geatches</em>: David, go for it.</p>\n\n\n\n<p><em>David Bowman</em>: Alec.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You&#8217;re too nice.</p>\n\n\n\n<p><em>Alec Geatches</em>: I&#8217;m going to be quiet.</p>\n\n\n\n<p><em>David Bowman</em>: So find me on LinkedIn if you want to talk WordPress stuff. That&#8217;s probably the best place to find me to talk about WordPress things. I&#8217;m also social media. You find me at hanging out in the Gutenberg GitHub repository sometimes. And yeah, I also, I blog with my family at <a href=\"https://americanfieldtrip.com/\">americanfieldtrip.com</a> about, totally not related to WordPress, but you can find me there. It&#8217;s mostly about national parks and travel stuff.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, wonderful.</p>\n\n\n\n<p><em>David Bowman</em>: But yeah, that&#8217;s how you find me. There&#8217;s a few different ways if you really want to track me down.</p>\n\n\n\n<p><em>Alec Geatches</em>: I&#8217;ve searched my name, Alec Geatches. I think I&#8217;m the only one so far. So you&#8217;ll find me there. You can email me at <a href=\"mailto:alecg@automatic.com\">alecg@automattic.com</a>.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Well thank you so much, and I think we are right at the hour. Very punctual. Yeah, it&#8217;s a German show. Well, thank you, all three of you, for spending the time with me and explaining all this good design systems and how you work with WordPress. I learned a lot about it, and I&#8217;m sure the viewers learned a lot too. Thank you so much for coming and I hope you have a wonderful weekend. It&#8217;s Friday night, or Friday morning, depending on where you are. Thanks everybody, and goodbye.</p>\n\n\n\n<p><em>David Bowman</em>: Thanks, everyone.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And we got a thank you from our anonymous developer. We use CD and with a pending acquisition of Figma by Adobe, I&#8217;m cautiously giddy and design system distraught. So here&#8217;s hoping. All right. That&#8217;s a good way to end it. Thank you all so much.</p>\n\n\n\n<p><em>David Bowman</em>: Take the plunge.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You take care, and I&#8217;ll end it here.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 15:55:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Akismet: OpenAPI specification for Akismet now available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=174137\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://akismet.com/blog/openapi-specification-for-akismet-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1163:\"<p>We have just released our first <a href=\"https://www.openapis.org/\">OpenAPI</a> specification for Akismet, which is hosted on Github:</p>\n\n\n\n<p><a href=\"https://github.com/Automattic/akismet-api\">https://github.com/Automattic/akismet-api</a></p>\n\n\n\n<p><a href=\"https://github.com/Automattic/akismet-api/blob/trunk/spec.yml\">The file</a> describes <a href=\"https://akismet.com/developers/\">our API</a> and each of its endpoints, including what parameters they accept and what the response looks like.</p>\n\n\n\n<p>You can import the spec to explore the API using tools like <a href=\"https://swagger.io/tools/swaggerhub/\">SwaggerHub</a> and <a href=\"https://www.postman.com/\">Postman</a>. You can also use it to automatically generate code for the Akismet API in your chosen programming language using <a href=\"https://openapi-generator.tech/\">OpenAPI Generator</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">We&#8217;re here to help</h3>\n\n\n\n<p>If you need help using our OpenAPI spec, or have any questions about our <a href=\"https://akismet.com/developers/\">API endpoints</a>, please don’t hesitate to&nbsp;<a href=\"https://akismet.com/contact/\">get in touch</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:31:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Chris Rosser ?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WordPress.org blog: Concerns over the European Union’s Cyber Resilience Act (CRA)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15686\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4086:\"<p>As the world’s most popular open source content management system, WordPress acknowledges the European Union&#8217;s initiative to bolster the cybersecurity of digital hardware and software products with the <a href=\"https://www.european-cyber-resilience-act.com/\">Cyber Resilience Act (CRA)</a>. The Act’s effort to counter the increasing threat of cyberattacks and promote informed usage of digital products with increased security updates and transparency is commendable.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>While we wholly endorse the objectives of the CRA, we are apprehensive about the Act&#8217;s implications on open source software due to unclear terms and definitions. </p>\n</blockquote>\n\n\n\n<p>Specifically, the Act’s prohibition on &#8220;unfinished software&#8221; and ambiguous definition of &#8220;commercial activity&#8221; could inadvertently inhibit innovation and economic participation in the European digital landscape.</p>\n\n\n\n<p>Open source projects, like WordPress, often rely on continual updates and improvements—a process that may technically fall under the label of &#8220;unfinished.&#8221; Furthermore, the ambiguous definition of &#8220;commercial activity&#8221; could unintentionally encompass open source projects that are largely driven by communities and operate on a not-for-profit basis.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our letter to the EU Commission</h2>\n\n\n\n<p>We have jointly authored an open letter addressing these concerns alongside fellow open source projects Drupal, Joomla!, and TYPO3<sup class=\"fn\"><a href=\"https://wordpress.org/news/feed/#eb28afbc-3487-447f-9af9-8b0418310a00\" id=\"eb28afbc-3487-447f-9af9-8b0418310a00-link\">1</a></sup>. The letter emphasizes the significant contribution of Free and Open Source Software (FOSS) to the EU&#8217;s economy and how the proposed regulations might undermine these efforts. Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation inherent to both the open source community and the <a href=\"https://european-union.europa.eu/principles-countries-history/principles-and-values/aims-and-values_en\">EU’s Aims and Values</a>.</p>\n\n\n\n<p>The letter invites the EU Commission and interested parties to participate in a seminar in Brussels to discuss how we can align the objectives of the CRA with the realities and needs of the FOSS community. We are optimistic that, with mutual understanding and cooperation, we can achieve secure digital products without limiting the vital contributions of open source projects.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-2 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://wordpress.org/news/files/2023/08/Open_Letter_on_the_Significance_of_Free_and_Open_Source_Software_in_the_EU_s_Proposed_Cyber_Resilience_Act.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Read the letter</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><ol class=\"wp-block-footnotes\"><li id=\"eb28afbc-3487-447f-9af9-8b0418310a00\"><a href=\"https://www.drupal.org/\">Drupal</a>, <a href=\"https://www.joomla.org/\">Joomla!</a>, <a href=\"https://typo3.com/\">TYPO3</a>, and <a href=\"https://wordpress.org/\">WordPress</a> are the most popular FOSS content management systems on the web today. While all are based on the PHP programming language and distributed under the GPL open source license, each platform takes a different approach to website publishing. With strength in diversity, they form the Inter-CMS Working Group, promoting the values and benefits of free and open source software. <a href=\"https://wordpress.org/news/feed/#eb28afbc-3487-447f-9af9-8b0418310a00-link\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/21a9.png\" alt=\"↩\" class=\"wp-smiley\" />︎</a></li></ol></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:25:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: #86 – Dan Walmsley on How WordPress Can Adapt to the Reality of AI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=147378\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/podcast/86-dan-walmsley-on-how-wordpress-can-adapt-to-the-reality-of-ai\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:60788:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case how AI works and how it might integrate with WordPress.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>Before we begin, just a quick alert that there will not be a podcast next week. It&#8217;s summer here and I&#8217;m having a few days away, but we&#8217;ll be back the week after that.</p>\n\n\n\n<p>So on the podcast today we have Dan Walmsley. Dan is a long time user of WordPress, having started using it even before version one was released. With a passion for experimenting with different publishing technologies, Dan eventually discovered WordPress and he&#8217;s been using it ever since.</p>\n\n\n\n<p>Currently working at Automattic as a code Wrangler, dan is part of the applied AI team. Although the team is relatively new, with only a few members, their mission is to coordinate and guide the various AI initiatives within the company.</p>\n\n\n\n<p>Recently he&#8217;s been focusing on automating internal workflows and communications. A particularly crucial aspect, given the distributed work set up which spans 70 countries, and multiple time zones.</p>\n\n\n\n<p>We start the conversation talking about Dan&#8217;s background. He&#8217;s recently decided that AI is a truly transformational technology, and so has taken steps to learn the skills needed to understand and implement it.</p>\n\n\n\n<p>Dan talks about how Large Language Models work, and how ChatGPT has driven awareness and demand for AI technologies in a way that was almost impossible to predict just a year ago. This has caused many companies to become deeply interested in AI and what it can do for their business workflows.</p>\n\n\n\n<p>We get into whether the reality of AI can live up to the hype. Do we have enough understanding of AI to know what its impact will be on the workplace, or are we just in the middle of a media frenzy, which will die down over time?</p>\n\n\n\n<p>Dan challenges, the notion that AI will take many of our jobs and emphasizes the economic value that AI can bring.</p>\n\n\n\n<p>We move on to explore the differences between site generators and site builders, and Dan introduces the concept of the copilot era, in which website creation can be somewhat automated. He highlights tools like Jetpack AI, which can generate content and modify the tone of voice right inside of WordPress.</p>\n\n\n\n<p>Dan stresses the importance of building AI tools with user interfaces that learn from human inputs in order to improve over time. He thinks that companies, which measure user responses and interactions will gain a significant advantage in AI development. While those who fail to improve that AI content generation will be left behind.</p>\n\n\n\n<p>Whether you&#8217;re new to AI or have been paying attention for awhile, this podcast offers a fascinating insight into its impact on society and how it can accelerate progress in fields like scientific research.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where find all the episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Dan Walmsley.</p>\n\n\n\n<p>I am joined on the podcast today by Dan Walmsley. Hello, Dan.</p>\n\n\n\n<p>[00:04:35] <strong>Dan Walmsley:</strong> Hello Nathan. Great to be here.</p>\n\n\n\n<p>[00:04:37] <strong>Nathan Wrigley:</strong> Yeah. Thank you for joining us. Dan, I wonder if you wouldn&#8217;t mind spending just a very quick moment or two just introducing yourself. Obviously, this is a WordPress podcast. I suspect that today we might stray out of the boundaries of the WordPress ecosystem a little bit. I have a feeling with our preamble talk that we&#8217;ve had, that may well happen. Nevertheless, given that it is a WordPress podcast, can you just tell us a little bit about your background, the work that you do, who you work for, that kind of thing.</p>\n\n\n\n<p>[00:05:01] <strong>Dan Walmsley:</strong> Yes. So I have been using WordPress since before version one, or whenever the first version came out. Because I remember back at the time I was playing around a lot with Movable Type and, oh gosh, I can&#8217;t even remember the name of all the different things. I&#8217;d gone through quite a few different publishing platforms, just experimenting with the web. And I discovered WordPress and I&#8217;ve literally still got that same blog, and it&#8217;s still on WordPress, and it&#8217;s been upgraded through every different version ever since.</p>\n\n\n\n<p>I work at Automattic. I am on the Applied AI team. I am a Code Wrangler, or code mangler. We all give ourselves our own titles and mine changes a bit. My colleague calls himself an applied AI artisan. And we&#8217; re a pretty new team. We&#8217;ve been around just a couple of months. And we&#8217;re very small, as in right now it&#8217;s just me and a couple of data scientists. But we have a lot of AI at Automattic. Our team&#8217;s job is to sort of try to coalesce, coordinate, guide, align it. So that we&#8217;re not just operating at the leaf nodes, that there&#8217;s a bit of larger thinking going into things.</p>\n\n\n\n<p>And as such, my days are mostly spent building weird prototypes on LangChain and chatbots. The most interesting thing I&#8217;ve looked at recently is automating some of our internal workflows and communications. Because we operate async, we&#8217;re remote. We&#8217;re in 70 odd countries around the world in different time zones. And so using AI to capture people&#8217;s knowledge and repeat it later when they&#8217;re asleep is pretty useful.</p>\n\n\n\n<p>[00:06:25] <strong>Nathan Wrigley:</strong> When the word Automattic is announced, I usually think of WordPress, but I think I&#8217;m right in saying that Automattic is the parent of quite a few different companies. So the connection between WordPress, the open source project, download from .org, may not be quite so obvious. But the implementation, it may well go into some of the SaaS offerings that you&#8217;ve got I&#8217;m guessing as well.</p>\n\n\n\n<p>[00:06:48] <strong>Dan Walmsley:</strong> Yeah, so we are trying to build out AI infrastructure that really doesn&#8217;t have a direct dependency on WordPress. You know, GPUs are GPUs, and we&#8217;re running a Python based stack on those, because that&#8217;s where a lot of the open source activity is. You might have seen that OpenAI announced some changes to their APIs, and in just a few hours, LangChain had a new release, incorporating those features.</p>\n\n\n\n<p>Good luck even finding that in TypeScript, let alone PHP, right? So if you want to move fast, you want to be on the cutting edge, got to stand up a bunch of Python. I&#8217;ve built a version of LangChain in PHP that runs on WordPress.com for the purposes of producing knowledge bases from blogs. It&#8217;s possible that if it turns out to be useful and reliable, that we&#8217;ll open source some of that. But right now it&#8217;s just there to provide some quick indexing for chat interfaces.</p>\n\n\n\n<p>[00:07:34] <strong>Nathan Wrigley:</strong> So your team is fairly new. Give us an idea of how old that word new means. Are we going back two years or 18 months or a couple of months?</p>\n\n\n\n<p>[00:07:43] <strong>Dan Walmsley:</strong> Two months maybe?</p>\n\n\n\n<p>[00:07:44] <strong>Nathan Wrigley:</strong> Really, new. Okay. And did that sort of trickle down from the Automattic leadership? Was it that people up there decided that, okay, now we&#8217;ve got OpenAI in the space, everybody&#8217;s, I mean, literally everybody seems to be talking about it.</p>\n\n\n\n<p>I don&#8217;t think I&#8217;ve picked up a newspaper, certainly an online newspaper, in the recent past without there being some kind of AI story in there. So was it that, or was it more a groundswell of Automatticians saying, look, if we&#8217;re going to stay in the game, we need to be moving with this.</p>\n\n\n\n<p>[00:08:11] <strong>Dan Walmsley:</strong> There&#8217;s some people who have been pushing on LLMs and transformer technology since pre GPT three or two. Which includes me. When I had my sabbatical a couple of years ago. So Automattic has a three month sabbatical, and I was like I&#8217;m going to learn AI. This seems really cool.</p>\n\n\n\n<p>So I did Andrew Ng&#8217;s Deep Learning course and a couple of other ones. There&#8217;s some really great courses out there now, even better ones now, this was about three years ago. And I just thought, oh my god, if this grows up, which it looks like it&#8217;s going to, it could be amazing for generating content. It could be amazing for conversational interfaces.</p>\n\n\n\n<p>I had a little Roomba running around my house, pretending to be a psychopathic robot with chainsaw arms, when in fact it was a little plastic Roomba. But it was like vaguely self-aware that it didn&#8217;t have chainsaws for arms. And so it would be like, when I get my chainsaws back on, you&#8217;re a toast buddy.</p>\n\n\n\n<p>I had an Australian robot that trundled around, it would try to get you to stop working and go to the beach. But it had no way of getting to the beach, which is hilarious. Anyway, that&#8217;s a long way of saying, some of us have been pushing for this stuff for a while, but I think what changed, obviously ChatGPT came out and created a lot of public awareness and public demand and conversation.</p>\n\n\n\n<p>People started to see this as a race. Companies started to see this, I don&#8217;t think Automattic necessarily falls in this bucket, but a lot of companies started to see this as existential. Either you have an AI plan or you&#8217;re dead. And so it made sense to put together a team that&#8217;s sort of looking at what is this for the whole organization.</p>\n\n\n\n<p>Because like you said, it&#8217;s a complicated organization. We&#8217;ve got podcasting apps, we&#8217;ve got diary apps. We&#8217;ve got Woo. We&#8217;ve got Day One and all these different things. Sensei is a learning management platform. And so we really needed to figure out how we could scale these efforts up, and not end up duplicating things or having tons of different approaches where it&#8217;s hard to get economies of scale, or build knowledge or build capability.</p>\n\n\n\n<p>[00:09:53] <strong>Nathan Wrigley:</strong> Now, given that the rate of change seems to be so incredibly fast. Give us an idea over those last two months, how much knowledge you&#8217;ve had to ingest. And I don&#8217;t necessarily mean knowledge, but how has it been, trying to keep up over those last couple of months?</p>\n\n\n\n<p>Is it genuinely as fast moving as it appears from the outside to be? What you learned last month probably doesn&#8217;t apply this month. And so therefore staring into the future, and if I asked you the slightly banal question, what will we be doing with AI in two years time? Is there really any realistic chance that you can offer us an answer to that?</p>\n\n\n\n<p>[00:10:27] <strong>Dan Walmsley:</strong> Well in terms of keeping up with it, there really is no way to keep up with everything. And I mean, there&#8217;s multiple different dimensions here, right? There&#8217;s the research dimension, what papers are coming out and how practical are those papers. And where are the outcomes of those papers showing up in libraries?</p>\n\n\n\n<p>And then there&#8217;s like, where is it showing up in products? What are our competitors doing, or what products might we plug into our own stack? For example, we can use GPT4 to generate help responses, but we have to sort of, stand up maybe a vector database and some other infrastructure, various job management things.</p>\n\n\n\n<p>There&#8217;s other third party services where you can point them at some public documentation and they figure all that stuff out for you, and just give you one endpoint that just chats with you. And it&#8217;s oh, well how much do we embrace this plus that? A lot of the day to day involves build versus buy versus don&#8217;t bother.</p>\n\n\n\n<p>And it&#8217;s really hard because our team currently has not that many full-time developers on it, and we do want to move really fast and understand these technologies and do the judicious integration. I personally in my horrifyingly long career have done lots of integrations and they&#8217;re almost always bad news.</p>\n\n\n\n<p>And I&#8217;m almost always fighting to do some minimal thing like in-house, rather than integrate. But it&#8217;s a constant. That&#8217;s really the battle. It&#8217;s like less so the awareness of what&#8217;s happening and more so wrestling with the idea of like, how do we incorporate this or not?</p>\n\n\n\n<p>And people wondering if something&#8217;s strategic or aligned or whatever. And there&#8217;s all these different time horizons you&#8217;re looking at. Like, are you talking about today? In a week, in two weeks, in a month, in a year? Because they&#8217;re all different answers.</p>\n\n\n\n<p>[00:11:57] <strong>Nathan Wrigley:</strong> Yeah, I feel like if I was to to you about AI two years ago, I genuinely think the conversation about what we would be doing in 2023, 2024, I honestly don&#8217;t think we could have got any kind of line of sight into what happened. Even maybe a year ago. Nobody would&#8217;ve thought that mainstream media, mainstream products, would be using AI. And like you said, falling over each other to have some kind of policy on AI. So I don&#8217;t quite know how conversation will go.</p>\n\n\n\n<p>But it feels as if we&#8217;re in the infancy of this still, and it does feel if we are going propel ourselves through this at an exponentially faster rate. The thing that just popped into my head was that when humanity first came up with the motor car, it was, at least in the UK, you had to have somebody walking with a flag in front of the motor car. And most people probably looked at it and thought, that&#8217;s ridiculous. I could walk there just as quickly as I could get into that vehicle and be driven there because it&#8217;s going so slowly.</p>\n\n\n\n<p>Give it 10 years, got a little bit faster. Give it another 10 years, it got faster and more beautiful and more efficient. But of course it then polluted the world, which brings us onto the inherent problems that we may have with AI. There&#8217;s a lot of concern about unexpected consequences. The fact that it hallucinates. The fact that it may give information out which is inaccurate. Given that this is your work, are you fairly sanguine that things built with AI are broadly speaking safe? Or are we just working out what the guardrails even are?</p>\n\n\n\n<p>[00:13:25] <strong>Dan Walmsley:</strong> Well there&#8217;s a few pieces to that question, and I keep failing to address all the pieces of your question, so I&#8217;ll try to genuinely do it this time. But, the first piece is sort of like where we&#8217;re at in this AI timeline, and you talked about various analogies.</p>\n\n\n\n<p>I think of this as the BBS era. If you&#8217;re in your forties, you know what a BBS is. If you&#8217;re not, it was when people used to connect to a single computer using a modem, and the modems were slow enough that you could see the text appearing on the screen. Sometimes slower than you could read. Certainly when I started using BBSs, it was slower than you could read, and even slower for images.</p>\n\n\n\n<p>And obviously subsequent to that we got the internet, through various stages. And now, you look at a BBS and it&#8217;s unrecognizable. It&#8217;s like why would you ever look up information this way when you can look at the whole internet? I think we&#8217;re going to go through the same thing with AI.</p>\n\n\n\n<p>There was another part to your questions which was the danger piece. There are alignment techniques that we use today on large language models and other kinds of models, that are fairly reliable at the scales at which those models operate, or at least useful.</p>\n\n\n\n<p>And the worst things that those models can do are not yet super terrible. if you&#8217;ve got one plugin that talks to your bank and another plugin that can pick up the phone, then a rogue AI can hallucinate its way into destroying your life, no problem.</p>\n\n\n\n<p>I sometimes talk about this with, we&#8217;ve experimented with building ChatGPT plugins for different products, including wordpress.com. And one of the hardest things is, you have to put user confirmation stuff everywhere because you simply can&#8217;t predict when the AI&#8217;s going to start invoking your API in backwards ways, and just deleting all your posts because it thought that&#8217;s what you wanted to do. Turning every post synopsis into the word red paper clip.</p>\n\n\n\n<p>There&#8217;s a broader alignment thing that I think goes way beyond that. It goes way beyond these hallucinations. Because you know, I think people get caught up with, oh well it&#8217;s not that useful because of the size of the context window. It&#8217;s not that useful because it hallucinates. So it&#8217;s not that useful because it was last updated in September, 2021. As if all of those aren&#8217;t things that are going to change immediately, right?</p>\n\n\n\n<p>Those are all solvable problems. We know we can make larger context windows. We know we can update it more often. We know we can inject additional information. We know that various alignment techniques can encourage it to reason more thoughtfully and activate pathways that have more expertise, and that will continue to be the case. And as the models get larger, those pathways with expertise will have more expertise. And so it&#8217;s obvious and predictable, those things.</p>\n\n\n\n<p>So the really hard thing to predict is where does this interface with society? And you know, we touched briefly on jobs and other things. Or whether, obviously people talk about rogue states getting an unhinged intelligence to go do crazy scientific research for them, or invent a nuclear weapon or a chemical weapon.</p>\n\n\n\n<p>Google Brain just invented protein folding. So get this, the Google Brain team, Google Deep Mind, they invented a protein folding system that can fold a protein in a few seconds, which is the equivalent of about at least four years of PhD time. And so in that single invention, they eradicated, I suppose you could say, or avoided over a million years of PhD time. By folding all those proteins instantly.</p>\n\n\n\n<p>The thing I think we&#8217;re not ready for is that rate of progress. I call it Moore&#8217;s Law for everything. Where you have a self-reinforcing centralized paradigm, where you have AIs that, by their very progress, make it easier to build the next AIs.</p>\n\n\n\n<p>And then at the same time you have this fanning out into different disciplines, where those newer AIs are also making it easier to make scientific progress. You could use, for example a score like Perplexity, feed in all of the papers in the world and find the most useful research questions to ask that have not been answered, by basically large scale language based statistics.</p>\n\n\n\n<p>[00:17:03] <strong>Nathan Wrigley:</strong> I think this is the piece where my knowledge breaks down because my interaction with AI has largely been ChatGPT. Certainly the most recent versions of ChatGPT. Plus also the image creation tools. And, I&#8217;m amazed by how quickly I&#8217;ve become, unimpressed is the wrong word, but how quickly I just expect it to give me something akin to a human.</p>\n\n\n\n<p>The first couple of times I used ChatGPT my entire endeavor was to see what it would produce, and be utterly, utterly flabbergasted by the fact that it could in any way give me something coherent back. And the same with the image creation tools, Stable Diffusion and a few others that I&#8217;ve tried. Typing in some kind of prompt, and then just jaw droppingly quickly, something half decent comes back. And you know you try a little bit harder and you tweak the input that you&#8217;re putting in and something slightly better comes back.</p>\n\n\n\n<p>I&#8217;m kind of amazed by how quickly that became uninteresting and just normal. In the same way that when I was a child, I first got on the bike and suddenly I could ride a bike and wow, this was amazing. Two weeks later you have to basically pay me to get on the bike at that point, it&#8217;d lost its interest.</p>\n\n\n\n<p>But I&#8217;m wondering if that interface, because it is replicating a human in many ways, you know, the ability to do art and the ability to give us answers, whether it&#8217;s hallucinating or not. I wonder if that&#8217;s something that we all think that&#8217;s the way the AI&#8217;s going to go. But the examples that you gave just then, like medical research and probably research in all sorts of scientific domains, if that&#8217;s something which just never quite gets out into the public.</p>\n\n\n\n<p>So the fear that a lot of people have, and there are some parts of that that I share, is never counterbalanced by the, but listen we&#8217;ve just done thousands and thousands of hours of PhD equivalent work in a matter of moments. Look how fantastic this is. I don&#8217;t think that message gets out very often.</p>\n\n\n\n<p>[00:18:56] <strong>Dan Walmsley:</strong> Well, you know, and without launching into a critique of the media, I think we can all recognize that dramatic headlines sell. And I&#8217;m sure if the headlines of these articles were slightly hard to predict whether AI will be good or bad, stay tuned. Then they wouldn&#8217;t sell so many newspapers.</p>\n\n\n\n<p>You know, I don&#8217;t think anybody can actually, at a large scale, predict the outcome of the current AI revolution. That there are people who think that it will be a nothing burger. And there are people who think that it will more likely than not, result in the eradication of the human species. And there are people who think it&#8217;ll be cyborgs. And there are people who think it&#8217;ll be utopia. They&#8217;re all neither right nor wrong, yet.</p>\n\n\n\n<p>I will say though, that people narrowly pushing, AI will take all the jobs line, definitely wrong in my opinion. Part of that we really alluded to this before the show, but part of that is, humans are really good at inventing new jobs. We added like 8 billion humans to the planet in the last a hundred or so years, and we gave them all jobs, no problem. We can invent new jobs like dog tickler and it&#8217;s fine.</p>\n\n\n\n<p>People will just find ways to keep themselves busy. And if AIs come and take away a huge amount of jobs, particularly those jobs that are mostly typing and mostly repetitive, like similar things over and over again, then maybe those people get a chance to like move their bodies and stand up.</p>\n\n\n\n<p>We forget how incredibly dysfunctional it is to sit there and type all day. If we can just take away all the typing. I have a gym membership because my body&#8217;s falling to pieces because I have to sit there and move my fingers and unblinkingly for like seven hours a day. It&#8217;s ridiculous. It&#8217;s torture. Can AI make that go away? That&#8217;d be amazing. What a revolution.</p>\n\n\n\n<p>And so we sort of think about this in terms of jobs as if there&#8217;s some fixed number of jobs and the AI&#8217;s going to take them. And then there&#8217;s going to be no jobs to replace them. We don&#8217;t really think about it holistically, in this sense of if it&#8217;s doing all that work it&#8217;s producing huge economic value and unlocking human potential.</p>\n\n\n\n<p>[00:20:48] <strong>Nathan Wrigley:</strong> One of the things that really has sort of crept up is the use of the word intelligence. So we&#8217;ve got AI, artificial intelligence. I&#8217;m not entirely sure that, at the moment, is really the right word to be deploying, because that is a fairly scary word.</p>\n\n\n\n<p>You&#8217;ve seen films going back half a century or more where some kind of intelligent cyborg, something created by a human being at least, Frankenstein onwards, is able to outthink humans and therefore wreak havoc and so on and so forth. But my understanding is that the implementations that we are broadly using, ChatGPT and so on and so forth, are based on these large language models.</p>\n\n\n\n<p>It would be interesting to get into the weeds of that if you&#8217;re willing. Can you explain how that technology works and why perhaps it&#8217;s more of a fluke that it gets anything right? Well, that&#8217;s not true. It&#8217;s not really intelligent in the sense that you or I would subscribe to a human, but it appears, it masquerades as intelligent.</p>\n\n\n\n<p>[00:21:48] <strong>Dan Walmsley:</strong> Right. That&#8217;s very true. So, I&#8217;ll try to make this brief but accessible to people who might not have heard this explained before. There was a paper came out, I think it was around 2017, might have been earlier from Google, called Attention is All You Need. And that was the paper that described an architecture called transformers. Where you could feed in a sequence of text that they would turn into these tokens representing, not quite a character, not quite a word, but a numeric string of stuff representing the text.</p>\n\n\n\n<p>And then it would be able to predict the next word with a pretty high degree of accuracy, based on paying selective attention to the previous words. So we all know that words like and, or, or not, aren&#8217;t always salient but then there&#8217;s other words that are sort of really important to the text.</p>\n\n\n\n<p>It gets really good at picking up genre and tone and language. It&#8217;s important to note that ChatGPT was never trained to speak English. It was Hindi or anything else. It was just fed huge amounts of text, and they hide a piece of the text and say, can you guess what that is? And if you do that enough times with this selective attention model, then you end up with a system that is very good at continuing text where you left off.</p>\n\n\n\n<p>Now this by itself is what they call a foundation model. It&#8217;s not that useful. The only thing that really does well is generate plausible sounding text. So if you start something that looks like a scientific paper, it will continue. If you start something that looks like a poem, it will continue.</p>\n\n\n\n<p>So, once you have that foundation model, it&#8217;s not very useful for chat. It will go off the rails. Because it turns out, as soon as a transformer introduces one mistake into its output. Let&#8217;s just say it&#8217;s producing an output and it changes somebody&#8217;s name from Bob to Bill. It will continue to refer to them as Bill, even if it knows in its heart of hearts the correct answer is Bob, because all it&#8217;s trying to do is be as plausible as possible. Ah, I said Bill, I better stick with Bill. Or I said, up is down, I better continue with up is down.</p>\n\n\n\n<p>I did about eight years of improv. It&#8217;s like an improviser in that respect. And in fact, that was one of the first things I used it for was generating scripts and improv things. Little musicals and stuff. Because it can take an absurd premise and run with it. So you give it an absurd premise like bogans in space, that&#8217;s a very Australian reference. It will generate the most plausible script it can for bogans in space. And that&#8217;s wonderful if what you&#8217;re doing is trying to create sort of a fantasy thing, but it&#8217;s less wonderful if you&#8217;re trying to do something grounded.</p>\n\n\n\n<p>And so then they go through these various alignment processes where they feed it a huge amount of handwritten, curated, expert questions and answers on top of that whole internet that they fed it in the first place. And these are supposed to be illustrative of, I&#8217;ve got a question, I need a step by step answer that is clear and concise. And I also need it to refuse to tell me how to make a chemical weapon and other things like that.</p>\n\n\n\n<p>So there&#8217;s some safety stuff there where you look at examples of people asking for malicious things. It&#8217;s crazy. I asked it to tell me a joke the other day, an Irishman, Englishman, American joke, right? And so ChatGPT refused to generate it. Because well, I can&#8217;t make a joke about people based on specific aspects of their race or whatever. Which is sort of like, fair enough in the general case but also weird in the context of me just wanting that joke for myself to see what it could do. That&#8217;s the kind of alignment stuff that they&#8217;ve put in.</p>\n\n\n\n<p>And so finally what you get at the end of the day after a few more steps, is a model that has a little background thing where developers can align the model. Has all these different safety mechanisms. Has the ability to spell out instructions step by step,. Avoids as much as it can certain mistakes that would lead to it repeating itself or hallucinating too much. And has the ability to recognize now and use tools that accept JSON structured input as part of its cognition. That&#8217;s the latest level of alignment that they&#8217;ve introduced. And in the future there&#8217;ll be more and more as it gets bigger and more capable.</p>\n\n\n\n<p>[00:25:31] <strong>Nathan Wrigley:</strong> So the fact that we&#8217;re on GPT4 at the moment, we&#8217;re recording this in June 2023. We&#8217;re on GPT4, and prior to that there was GPT3. And I think everybody can agree that each iteration is better. But the way that the technology is structured at the moment, will each version in the large language model, the token version that you described, the transformer model, will that simply get better at creating fewer and fewer mistakes?</p>\n\n\n\n<p>Or are we approaching something which we could point to and say okay that now really is intelligent? In other words, are we heading towards a general intelligence? An AGI where we can now no longer disassociate it from being a human. It can come up with its own incentives, its own reasons to do things and then figure things out all by itself, based upon no human input whatsoever?</p>\n\n\n\n<p>[00:26:18] <strong>Dan Walmsley:</strong> Yes. When I think of an AGI, I think of an autonomous AGI, right? Where it&#8217;s HAL 9000. I don&#8217;t really know when that will happen. And I don&#8217;t know if it&#8217;s a great idea necessarily. I think in between here and there, there&#8217;s like a huge amount of work to be done to bring this technology to life in ways that help people with their work.</p>\n\n\n\n<p>It&#8217;s one thing to switch tabs and go to ChatGPT and type, write me a program that does x or y. It&#8217;s another thing to have GitHub Copilot living in the editor, which is an absolute game changer. And I suspect what&#8217;s coming next is AIs that work with your programmers and produce pull requests, or patches on pull requests, that fix linting or reduce complexity.</p>\n\n\n\n<p>For example, I would pay at least $10,000 a month for an AI that comes in and reduces the complexity of the code that our teams write every single day. Finds methods that shouldn&#8217;t be there. Renames things to more align with each other. Move stuff between classes, and documents things publicly. Maybe pings developers if it&#8217;s not sure something&#8217;s useful anymore. Can you just imagine? Because not only is that cleaning up the code, it&#8217;s reducing the number of developers you want, it&#8217;s removing one of the most annoying things about being a developer.</p>\n\n\n\n<p>So it&#8217;s making your job as a developer more pleasant. It&#8217;s not like it&#8217;s inventing new stuff, but it&#8217;s making it so much easier to invent new stuff because you&#8217;re working on super clean, minimal code that only does what you need it to do. And now just imagine if every company had that, how much progress we would see.</p>\n\n\n\n<p>[00:27:46] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s interesting isn&#8217;t it because at the hub of that is, it almost feels like if you paid that $10,000, a large proportion of your team have to go away. Because probably a significant proportion of the team is people going in and cleaning things up and what have you.</p>\n\n\n\n<p>[00:27:59] <strong>Dan Walmsley:</strong> Does it work that way though? Because let&#8217;s just imagine that somebody is on my team. Unless your company is losing money, right? Large amounts of money, and you&#8217;re desperately looking for some way to cut, right? If you have a programmer on your team and you can give them this tool and they become four times as productive. Then why would you want fewer programmers? Every programmer you add is four new programmers.</p>\n\n\n\n<p>I don&#8217;t think this is going to result in people being fired en masse. People look around at Silicon Valley right now, there&#8217;s a lot of companies copying the Elon Musk strategy of, oh boy we just realized that we need to trim the fat. Over the long term, I don&#8217;t know if that necessarily means fewer programmers. Although I do think more people will get to be a programmer.</p>\n\n\n\n<p>My dream is that every human being has their own open source stack that is completely proprietary to them. That is built and managed by an AI that is completely personal to them. Runs on a device that they own and control.</p>\n\n\n\n<p>And so then you can simply describe how you want your life to be, and your personal software stack adapts and makes sure that I only see the information that is valuable and actionable to me. And because of this AIs role in my life, I&#8217;m able to get insights about what&#8217;s really working, and avoid distractions and nobody will ever be able to spam me again.</p>\n\n\n\n<p>I actually literally am building an AI that scrapes the bajillion inscrutable emails from the school and plucks out the things that actually need to go in my calendar. It&#8217;s easy now, right? It&#8217;s 50 lines of code. And I can do the same thing for other digital parts of my life and just make that whole thing go away.</p>\n\n\n\n<p>[00:29:29] <strong>Nathan Wrigley:</strong> Yeah, I think there&#8217;s three places to sit on this seesaw. There&#8217;s either I&#8217;m terrified by AI, or I&#8217;m really pro AI, or I think where I&#8217;m finding myself at the minute is more in the middle. There are parts of it that I can see which clearly have enormous utility, and are really going to put us on a rocket ship to Mars if you like.</p>\n\n\n\n<p>There&#8217;s just no downside, but I think there is a part of me which does genuinely worry about the incentives. Whether or not it&#8217;s a great idea to automate all the things. Whether the landscape is just going to become flooded by noise, which actual humans can&#8217;t go through. So we then have to employ more AI to figure out how to get rid of the fake content. I&#8217;m not a hundred percent sold on it. I can certainly see there&#8217;s bits of it which have benefits.</p>\n\n\n\n<p>However, I&#8217;ve just come back from WordCamp Europe and part of the final address, we had Matt, Josepha and Matias on stage. And Matt is clearly very, very bullish about AI. In the same way that five years ago he was telling everybody to learn JavaScript deeply. I think the lasting message I got certainly from that presentation was start using AI deeply. Obviously you&#8217;re an Automattician, what he says matters. I&#8217;m just wondering, just to bring it back to WordPress, I&#8217;m wondering where we are going to begin to see AI in our WordPress sites? What are the kind of places where we may see it surfacing in the future?</p>\n\n\n\n<p>[00:30:51] <strong>Dan Walmsley:</strong> Yeah, I&#8217;m going to start with the quote from Matt, learn AI deeply. We don&#8217;t really know where AI is going to go but we see a certain rate of progress. And it&#8217;s faster than Moore&#8217;s Law. And so if you use an imperfect AI tool today and you get familiar with it and fluent with it, let&#8217;s just say GitHub Copilot. You can be pretty sure that tool will accelerate in progress over time. Because it&#8217;s already an AI tool that&#8217;s like standing on the shoulders of this like industry. So it&#8217;s going to get faster, it&#8217;s going to get better.</p>\n\n\n\n<p>The people who don&#8217;t embrace AI are going to continue on their linear or plateau trajectory. And so I feel like any human being alive today should probably start embracing some piece of AI in their life so that they can get a sense for how it&#8217;s shifting and changing and improving. So if it&#8217;s just a matter of using ChatGPT to like make plugin snippets, oh it&#8217;s good at this, it&#8217;s not good at that. Make it a habit. Then you&#8217;ll bear witness to what&#8217;s going on and you&#8217;ll know where to jump both feet into the stream and start leveraging this stuff more at scale.</p>\n\n\n\n<p>In terms of where we&#8217;re going to see it show up in WordPress. I was on a panel recently and one of the things that I said was, a question worth asking is what content management system would an AI choose? If you&#8217;re an AI and you&#8217;ve been asked to create a website for someone and you haven&#8217;t been told what technology to use, would you use WordPress?</p>\n\n\n\n<p>And the answer today is, probably. Because most of the public documentation for content management systems is WordPress documentation. So the AI has access to like 20 years of all this stuff. And that&#8217;s really, really powerful. It means it can reason about WordPress in a really impressive way.</p>\n\n\n\n<p>It&#8217;s actually a great testimony to keeping WordPress roughly the same all of that time with minimal breaking changes. Because, you know, one of the things that I&#8217;ve noticed is there are lots of breaking changes between libraries in the Python ecosystem. And that means that ChatGPT very rarely writes working Python code for me. I have to modify it to use the latest API or whatever. It almost always produces working PHP WordPress code, because what works hasn&#8217;t changed, which is quite amazing.</p>\n\n\n\n<p>[00:32:58] <strong>Nathan Wrigley:</strong> I mean, that is actually phenomenal to see that happen.</p>\n\n\n\n<p>[00:33:01] <strong>Dan Walmsley:</strong> Yeah. Now we have to capitalize on that, but that&#8217;s a really great start. And you know what CMS would an AI choose, okay it&#8217;s one that it&#8217;s familiar with. And then the next level is, well it would be one where you can modify it and extend it easily. WordPress certainly checks that box to infinity, right? There&#8217;s all of these existing plugins and an AI can read the documentation of plugins and choose one for you or whatever it needs to do.</p>\n\n\n\n<p>So the plugin mechanism is amazing because you can basically take a statement that someone makes about how they want their website to be different, and turn it into a function that runs a bunch of hooks.</p>\n\n\n\n<p>It doesn&#8217;t have to go modifying the existing code of WordPress and forking it. It can just like inject the things that you ask it for, and correlate them back to the statements that you made. And in the future if it finds out that there was a better way to implement that request then it can implement it differently. Because it has the original things you asked for. So that&#8217;s one way I think I see AI helping with WordPress over time. Not that that&#8217;s a product that I&#8217;ve built I&#8217;m just sort of reasoning broadly about it.</p>\n\n\n\n<p>[00:33:59] <strong>Nathan Wrigley:</strong> I think one of the areas that I really would like to see is the ability to leverage what&#8217;s just come around. I&#8217;m really excited about blocks and block patterns in particular. I&#8217;m quite a visual person, so I love to see images of what I&#8217;m about to get. And the idea of, I don&#8217;t know, I want to build a website for a local industry. A real estate agent, a lawyer or something like that. And the AI has some kind of interpretation of what that means. It probably has a little understanding of the geography of where I live and what kind of imagery might go into a website like that.</p>\n\n\n\n<p>I live on the coast and there is some things which people always take pictures of and they often end up on websites for the places where I live. But also it understands typically what a lawyer is, you know? And it would understand that, okay, you probably need a page that has this on it, and a page that needs this on it, and probably a form and blah, blah, blah.</p>\n\n\n\n<p>And then it would just throw at me, I don&#8217;t know 100, 200 designs, something like that, that I can look at. And because of the fact that it&#8217;s all built with blocks I could input that pattern, and then start to tweak things as I like it. I just love the idea of the choice that it might be able to give me, and short circuit, I mean me building 200 different designs, that&#8217;s going to take me weeks. This potentially could happen in the blink of an eye and I love that choice.</p>\n\n\n\n<p>[00:35:13] <strong>Dan Walmsley:</strong> Yeah. Think about a few years ago, if you had like a site generator versus a site builder, right? So let&#8217;s just say I generated a site and we&#8217;ve all be familiar with site generators, you give it like, what kind of color scheme you want and what kind of industry you&#8217;re in and kind of thing.</p>\n\n\n\n<p>And this has been possible for 10 or 20 years that you can generate a site. But the problem is, okay, now you&#8217;ve generated a site and then you make some content and you&#8217;re like, ah, I want to change that one decision. Well you can either regenerate it from scratch and blows away everything you&#8217;ve done. Or you can try and manually make the change, but you have no idea how to do that because you didn&#8217;t build it in the first place. And then you&#8217;re going to learn the whole system.</p>\n\n\n\n<p>That sort of like magic trick of generating the site back in the day is the thing you can only do once. But in the copilot era, which I think Microsoft correctly identified this paradigm. You can jump in and out of automating the site creation experience as much as you want. And so the idea is, okay, I&#8217;m going to generate the content on this page. Jetpack AI block is actually really, really good at this. I&#8217;m not here to like boost our products too much. But it&#8217;s like a really good example.</p>\n\n\n\n<p>You can generate a page and then you can just change the tone of voice. And it will go and take the same content and change the tone of voice, non-destructively, you know what I mean?</p>\n\n\n\n<p>And so the AI is able to work with whatever changes you&#8217;ve already made and make some more. I think that that&#8217;s going to be the paradigm for a long time. And anybody building AI tools needs to be very careful about building the UI in such a way that it takes these hints from the human. And uses them to make the AI better over time. Better at getting the first guess right.</p>\n\n\n\n<p>And any company that does that is going to have an AI flywheel. And any company that just generates content directly but doesn&#8217;t measure how the users respond to it or interact with it or change it over time is going to be stuck on a plateau, with no way to get to the next level.</p>\n\n\n\n<p>[00:37:04] <strong>Nathan Wrigley:</strong> I really find the whole idea of that curious. Literally you could go to bed one night, wake up in the morning and the AI has decided that we&#8217;ve gathered lots of data and well you had a real blitz of users during the course of the night and it&#8217;s really shown us that no, they don&#8217;t like this bit, so we&#8217;ve changed it entirely on your behalf. So it&#8217;s like split testing but on steroids.</p>\n\n\n\n<p>That seems like a really interesting idea. Obviously people will not wish to hand some aspects of that over but if you can prove that a WooCommerce sale, for example, this configuration of a checkout system seems to be 20 times more popular than this one. Okay, we&#8217;re going to get rid of that one. Now we&#8217;re going to start working our way through whether we can improve this one. All of that seems to be a bit of a no-brainer.</p>\n\n\n\n<p>[00:37:47] <strong>Dan Walmsley:</strong> Yes. Building an awareness of when humans need to make discriminating decisions, and when you can make them on their behalf. And the product design aspects of what expectations do you set about what&#8217;s going to happen, or whether it&#8217;s reversible, or whether it requires confirmation or authentication or et cetera, et cetera. Taking a backup.</p>\n\n\n\n<p>That&#8217;s all stuff that you don&#8217;t get for free with AI. That&#8217;s all the infrastructure of actually making it useful. And I will say the AI itself is dead simple to use, right? it&#8217;s conceptually unbelievably easy. 99.99% of the work is just like aligning the whole rest of the system around it so that you can make sure that customers have a good experience.</p>\n\n\n\n<p>The normal stuff of building products, right? Setting expectations, all these different things. It feels different because watching a generative AI talk like a person is weird, but it&#8217;s not, it&#8217;s not work that requires you go do a deep learning course.</p>\n\n\n\n<p>The thing that is transformative about this is it&#8217;s generality. These techniques have existed for years. We&#8217;ve always been able to classify, well, not always, for a long time been able to classify images for a long time been able to sort of grammatically parse out text or detect languages or sentiment or other things.</p>\n\n\n\n<p>But they were all specialized models with vast data sets. And now you can fine tune it on 500 of your own examples and have it go answering entire support requests straight out of your knowledge base. And so it&#8217;s that generality that is really powerful.</p>\n\n\n\n<p>[00:39:13] <strong>Nathan Wrigley:</strong> I&#8217;m curious to see what the UI for all of these different things are going to be in the future. In the sense that, you know, if you look at WordPress from when you began using it, it&#8217;s a very different animal. Although it hasn&#8217;t changed dramatically in the last five or six years. When you began using it, it was a different animal to the way it looks now.</p>\n\n\n\n<p>And then these sort of page builder technologies came along and further democratized publishing and made things easy and it was a point click interface. I&#8217;m just curious to see how, what the pieces are that live inside WordPress. Whether it&#8217;s going to be text input. Whether we&#8217;re just going to start talking to our website and, you know, move it left a bit, a little bit more, make it red. Not that red, the other red.</p>\n\n\n\n<p>I want a picture of a, I don&#8217;t know, a sausage over there, that kind of thing. How all this gets surfaced. We&#8217;re obviously in the era of trying to get everybody to use Gutenberg. Whether it fits into there or whether we need a brand new interface because the AI will just take care of everything. That bit is for me going to be really interesting.</p>\n\n\n\n<p>[00:40:06] <strong>Dan Walmsley:</strong> Yeah. I&#8217;m really excited to see what happens with Gutenberg. I&#8217;m completely convinced Gutenberg will not go away. And actually AI makes Gutenberg look like a better and better decision versus the classic editor as AI comes into view.</p>\n\n\n\n<p>[00:40:21] <strong>Nathan Wrigley:</strong> Can you develop on that? I think I know what you mean but I want to hear what you mean. Yeah.</p>\n\n\n\n<p>[00:40:25] <strong>Dan Walmsley:</strong> So having things embedded as blocks with parameters provides a much more semantically rich interface than just a bunch of HTML. It&#8217;s similar as to how we see markdown used a lot more in AI than HTML as a formatting language, input, output. And why is that?</p>\n\n\n\n<p>Well, it&#8217;s because the structure tells you something about the meaning of the document, right? This is a table, this is an image, this is a whatever. Obviously you get an HTML but more sophisticated than that, right? This allows the AI, so say you&#8217;ve got like a cover block with an image and a text. This allows the AI to have some confidence about how that&#8217;s going to appear when it shows up on a webpage.</p>\n\n\n\n<p>As opposed to arbitrary HTML that may be pulling in CSS from various places and like all that kind of stuff. Gutenberg provides an incredible foundation for collaboration. And collaboration is key, right? If we&#8217;re talking about the copilot era here, I don&#8217;t think for a long, long time we&#8217;re ever going to have necessarily AIs. Like you&#8217;re not going to have a CMS come out that like, doesn&#8217;t have an editor, because it just has a chat interface. You tell the AI what to do and hope that it does the right thing.</p>\n\n\n\n<p>Like that&#8217;s not going to be the case for a really, really long time, if ever. What you need is an editor where you can seamlessly collaborate with an AI. And if I was to take Matt&#8217;s words and bring them back into the conversation about learning AI deeply, I would love to see people in the community experimenting with UX concepts for collab.</p>\n\n\n\n<p>We are in the collaboration phase. Now is the time to start bringing your ideas to the table about what it looks like to collaborate with an AI in Gutenberg and how revolutionary that could be.</p>\n\n\n\n<p>[00:42:01] <strong>Nathan Wrigley:</strong> Are you open to those conversations? Is your team keen to hear from the community? And if that&#8217;s the case, where do we go to begin that conversation?</p>\n\n\n\n<p>[00:42:08] <strong>Dan Walmsley:</strong> That&#8217;s all happening in the open source community. I&#8217;ve had a couple of conversations with Matias or others, but really at a high level. I think it&#8217;s the community that needs to help drive that. We&#8217;ve shown what&#8217;s possible with Jetpack AI. It&#8217;s like the first quickest, most sane thing we could build.</p>\n\n\n\n<p>But in terms of the collaboration phase, my team is aligning the AI efforts of a large multinational corporation across many, many, many different modalities. Not just in the editor, but across image classification, and trust and safety, and all sorts of other things.</p>\n\n\n\n<p>On a day-to-day basis I don&#8217;t have a huge amount of bandwidth for one thing like the Gutenberg editor but I really encourage the community to get involved and share ideas.</p>\n\n\n\n<p>[00:42:53] <strong>Nathan Wrigley:</strong> Yeah. I&#8217;ll put links to the presentation that you were involved in, with, I know it was at least Anne McCarthy. I can&#8217;t remember who the other contributors were now but that was really fascinating. Interesting kind of first steps in, well, tell us what we want out of AI because we can see what it can do out in the wild with other things. You mentioned co-pilot and there&#8217;s obviously ChatGPT and all fun images that you can create with mangled fingers.</p>\n\n\n\n<p>Interesting to find out what the community want from it. How it will look in two or three years time? And getting involved in that conversation could really impact the project right now.</p>\n\n\n\n<p>[00:43:25] <strong>Dan Walmsley:</strong> I would also say, dark horse here, but I would love to see more people get involved in WordPress Playground. So for those don&#8217;t know, WordPress Playground they demoed it last year and I was actually in the room in New York for the WordCamp US there.</p>\n\n\n\n<p>[00:43:38] <strong>Nathan Wrigley:</strong> That is some astonishing tech.</p>\n\n\n\n<p>[00:43:41] <strong>Dan Walmsley:</strong> It is game changing. I mean, and it&#8217;s funny because it&#8217;s on the one hand you could look at it and be like, well, this is like a cute hack, but it&#8217;s you know, you would never run a website this way. But think about it, if you&#8217;re a person creating or modifying or wanting to come up with a new website. With no hosting, with no nothing, just sitting there like running a blob of JS in the browser.</p>\n\n\n\n<p>You can ask an AI to generate the entire site and remix it and destroy it and build it again, and like when you&#8217;re happy enough with it, click a button to download and put it on a real web host. It&#8217;s lowering the barrier to entry. And I can imagine if we get lots of good contributions, there&#8217;s already really good JavaScript API access for saying, install this plugin, or like, modify this file, right?</p>\n\n\n\n<p>And so if you go a step further, oh, generate an AI block that does X, Y, Z, right? And if you&#8217;re a developer that doesn&#8217;t already have WordPress or know WordPress, and you don&#8217;t have to pull down PHP, you don&#8217;t even have to write PHP. You have this like ephemeral WordPress in the browser and you can see what it&#8217;s capable of.</p>\n\n\n\n<p>I think that could bring so many potential developers into the WordPress community. Who are able to see what&#8217;s possible, have this low barrier entry, who have zero dependencies and can provide plugins and blocks and other cool ideas into the WordPress community who might not have had a chance to contribute before.</p>\n\n\n\n<p>[00:44:56] <strong>Nathan Wrigley:</strong> It&#8217;s amazing when you actually use it because you just assume that there&#8217;s a machine somewhere remotely that&#8217;s serving up that website and it just spun it up in a heartbeat. But of course it&#8217;s not. You can entirely unplug from the internet and there it is. It&#8217;s still working. And it took all of no seconds at all to get the whole thing going. It&#8217;s amazing.</p>\n\n\n\n<p>[00:45:17] <strong>Dan Walmsley:</strong> Yeah, it really is.</p>\n\n\n\n<p>[00:45:19] <strong>Nathan Wrigley:</strong> I will link to that as well. Yep.</p>\n\n\n\n<p>[00:45:21] <strong>Dan Walmsley:</strong> I hope that becomes the way that a lot of people build stuff on WordPress actually. It is a playground. It&#8217;s really fun. It reminds me of when I was playing with the first version of WordPress. But it&#8217;s just accessible to vastly, vastly more people. You know, anyone with a web browser?</p>\n\n\n\n<p>[00:45:35] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s kind of like having a blank piece of paper next to you, one of a thousand bits of paper that you can just scribble on and screw it up and throw it over your shoulder and, okay, that didn&#8217;t work. Let&#8217;s try again. We&#8217;ll just blank canvas, start again. And actually, I don&#8217;t know if you did see the address that Matt gave at WordCamp Europe. That was one of the other things he discussed. So you are very much in alignment.</p>\n\n\n\n<p>[00:45:54] <strong>Dan Walmsley:</strong> It&#8217;s in my queue.</p>\n\n\n\n<p>[00:45:56] <strong>Nathan Wrigley:</strong> Okay. Well, sadly, I mean, I could honestly talk about this with very little authority for hours and hours and hours. But we&#8217;ve probably used up our allotted time.</p>\n\n\n\n<p>Dan, if anybody wants to reach out to you specifically, do you make yourself available in that way? And if so, where do we find you? Are you a Twitter fan? Or are you on, you know, you&#8217;re going to throw an email in our direction or a Slack channel? Let us know.</p>\n\n\n\n<p>[00:46:17] <strong>Dan Walmsley:</strong> Well, you can reach me on Twitter. Twitter.com/danwalmsley. d a n w a l m s l e y. It&#8217;s a tricky one. And, that&#8217;s a start.</p>\n\n\n\n<p>[00:46:28] <strong>Nathan Wrigley:</strong> Perfect. Well, thank you so much for chatting to us today about AI. I&#8217;m just sorry that I, uh, I can&#8217;t kind of keep up with the level of intelligence that&#8217;s probably required to make this conversation worth while, but I appreciate it.</p>\n\n\n\n<p>[00:46:40] <strong>Dan Walmsley:</strong> I super appreciate being on the podcast. I&#8217;m really, really excited about the next couple of years. And especially for WordPress. I think we&#8217;ve got like a lot of strengths that if we leverage them, can put us in an amazing position to empower a lot of people to, you know, publish and to continue to democratize publishing.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/danwalmsley\">Dan Walmsley</a>.</p>\n\n\n\n<p>Dan is a long-time user of WordPress, having started using it even before version one was released. With a passion for experimenting with different publishing platforms, Dan eventually discovered WordPress and has been using it ever since. Currently working at Automattic as a Code Wrangler, Dan is part of the Applied AI team. Although the team is relatively new, with only a few members, their mission is to coordinate and guide the various AI initiatives within the company. Recently, he has been focusing on automating internal workflows and communications, a particularly crucial aspect given the distributed work setup, which spans 70 countries and multiple time zones.</p>\n\n\n\n<p>We start the conversation talking about Dan’s background. He’s recently decided that AI is a truly transformational technology and so has taken steps to learn the skills needed to understand and implement it.</p>\n\n\n\n<p>Dan talks about how Large Language Models work, and how ChatGPT has driven awareness, and demand, for AI technologies in a way that was almost impossible to predict just a year ago. This has caused many companies to become deeply interested in AI and what it can do for their business workflows.</p>\n\n\n\n<p>We get into whether the reality of AI can live up to the hype. Do we have enough understanding of AI to know what its impact will be on the workplace, or are we just in the middle of a media frenzy which will die down over time? Dan challenges the notion that AI will take many of our jobs, and emphasises the economic value that AI can bring.</p>\n\n\n\n<p>We move on to explore the differences between site generators and site builders, and Dan introduces the concept of the ‘copilot era’ in which website creation can be somewhat automated. He highlights tools like Jetpack AI which can generate content and modify the tone of voice right inside of WordPress.</p>\n\n\n\n<p>Dan stresses the importance of building AI tools with user interfaces that learn from human input in order to improve over time. He thinks that companies which measure user responses and interactions will gain a significant advantage in AI development, while those who fail to improve their AI content generation will be left behind.</p>\n\n\n\n<p>Whether you’re new to AI or have been paying attention for a while, this podcast offers a fascinating insight into its impact on society, and how it can accelerate progress in fields like scientific research.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://movabletype.org/\">Moveable Type</a></p>\n\n\n\n<p><a href=\"https://automattic.com/\">Automattic</a></p>\n\n\n\n<p><a href=\"https://docs.langchain.com/docs/\">LangChain</a></p>\n\n\n\n<p><a href=\"https://openai.com/\">OpenAI</a></p>\n\n\n\n<p><a href=\"https://www.typescriptlang.org/\">TypeScript</a></p>\n\n\n\n<p><a href=\"https://www.andrewng.org/courses/\">Andrew Ng&#8217;s Deep Learning course</a></p>\n\n\n\n<p><a href=\"https://dayoneapp.com/\">Day One</a></p>\n\n\n\n<p><a href=\"https://woocommerce.com/\">WooCommerce</a></p>\n\n\n\n<p><a href=\"https://senseilms.com/\">Sensai</a></p>\n\n\n\n<p><a href=\"https://www.deepmind.com/\">Google Deep Mind</a></p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/Perplexity\">Perplexity</a></p>\n\n\n\n<p><a href=\"https://stability.ai/stablediffusion\">Stable Diffusion</a></p>\n\n\n\n<p>Google&#8217;s &#8216;<a href=\"https://arxiv.org/pdf/1706.03762.pdf\">Attention is all you need</a>&#8216; paper</p>\n\n\n\n<p><a href=\"https://github.com/features/copilot\">GitHub Copilot</a></p>\n\n\n\n<p><a href=\"https://jetpack.com/ai/\">Jetpack AI</a></p>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=rWH6Z6cJe5o\">AI and the future of WordPress</a> &#8211; Panel session</p>\n\n\n\n<p><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a></p>\n\n\n\n<p><a href=\"https://twitter.com/danwalmsley\">Dan&#8217;s Twitter</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WPTavern: Jetpack Launches Newsletter Product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147385\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wptavern.com/jetpack-launches-newsletter-product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6345:\"<p><a href=\"https://jetpack.com/blog/jetpack-12-4/\">Jetpack 12.4</a> was released today, launching the plugin&#8217;s <a href=\"https://jetpack.com/blog/introducing-jetpack-newsletter/\">Newsletter product</a>. It allows users to send blog posts as newsletters, without the hassle of having to copy and paste from the WordPress editor into another newsletter service&#8217;s campaign editor and reformat it for email. This launch comes seven months after <a href=\"https://wptavern.com/wordpress-com-launches-newsletter-product\">WordPress.com launched its newsletter offering</a>, which uses the same underlying infrastructure to deliver emails.</p>\n\n\n\n<p><a href=\"https://jetpack.com/newsletter/\">Jetpack Newsletter</a> is launching as a free product, with a percentage of fees collected from creators who choose to offer paid subscriptions:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Fees are only collected when you accept payments. Fees are based on the Jetpack plan you have and are calculated as a percentage of your revenue from 10% on the Free plan to 2% on the Complete plan (plus Stripe fees). </p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1262\" height=\"844\" />\n\n\n\n<p>Jetpack users are probably familiar with the plugin&#8217;s ability to send posts to subscribers via email. The newsletter feature uses this <a href=\"https://jetpack.com/support/subscriptions/\">same infrastructure</a> that site owners have relied on for years to allow subscribers to get updates in their inboxes when new posts are available.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1560\" height=\"688\" />\n\n\n\n<p>Newsletters can be turned on under the Discussion tab in the Jetpack settings. Many Jetpack users likely already have this turned on.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1458\" height=\"596\" />\n\n\n\n<p>The Subscribe block can be placed anywhere on the site and new subscribers will be sent a confirmation email to confirm their subscription. They have the option to choose between instant, daily, or a weekly digest, as well as control the time and day they receive their digests. Subscribers can also pause or unsubscribe from the site.</p>\n\n\n\n<p>Subscriber import and other features, such as newsletter stats for opens and clicks, is available via the Jetpack admin pages on WordPress.com. </p>\n\n\n\n<p>At this time, newsletter creators can only import up to 100 subscribers via CSV file. This is severely limiting for all but the smallest of newsletters, but the Jetpack team has confirmed that it is high on their list of priorities to change as it creates too much of a barrier. The limit was set for spam prevention, but it makes it nearly impossible to migrate to Jetpack Newsletter if you have a popular newsletter. Those who are on paid plans can upload unlimited subscribers. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2020\" height=\"1076\" />\n\n\n\n<p>Newsletter creators can change the site name and logo for their emails and paid users will have more customization options in the future.</p>\n\n\n\n<p>One thing that sets Jetpack Newsletter apart from the vast majority of other traditional email service providers is that it allows unlimited email sends and unlimited subscriber lists for both free and paid users. </p>\n\n\n\n<p>Most popular services like Mailchimp, Brevo, and SendGrid, allow only a few hundred emails to be sent per day or up to 1,000 per month for free users. Paid plans get expensive quickly as a newsletter&#8217;s subscriber base grows. Emails and subscriber numbers usually determine the pricing for these services, which makes Jetpack&#8217;s product stand out from the crowd, especially for those who intend to independently monetize their newsletter through ads and paid sponsorships.</p>\n\n\n\n<p>Jetpack Marketing Lead Rob Pugh said that although popular newsletter services are more limited in emails and subscriber numbers, they also offer a completely different feature set. The Jetpack Newsletter product is aimed at competitors like <a rel=\"noreferrer noopener\" href=\"http://substack.com/\" target=\"_blank\">Substack.com</a>, <a rel=\"noreferrer noopener\" href=\"http://beehiiv.com/\" target=\"_blank\">Beehiiv.com</a>, and <a rel=\"noreferrer noopener\" href=\"http://ghost.org/\" target=\"_blank\">Ghost.org</a>, which also all offer unlimited email sends. On paid plans, Jetpack Newsletter&#8217;s offer beats Substack, as it collects 2% (plus Stripe fees) as compared to Substack&#8217;s take of 10% plus credit card fees.</p>\n\n\n\n<p>Newsletter creators should be aware that Jetpack Newsletter&#8217;s unlimited emails and subscribers may not last forever, as the FAQ section of the product states that it is an introductory offer:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>As an introductory offer, we do not limit you or charge you based on your email list size. This may change in the future. Fair usage policy applies.</p>\n</blockquote>\n\n\n\n<p>Jetpack representatives were not able to confirm the limits of fair usage or how long the introductory period will last.</p>\n\n\n\n<p>&#8220;Launching without a limit on emails isn’t the most financially responsible thing, but we’re most excited to get this feature into the hands of people to get feedback,&#8221; Pugh said. &#8220;We’re focused on the immediate roadmap to make the product better, although there will likely be a limit at some point in the future if we see extreme use from people on free plans.&#8221;</p>\n\n\n\n<p>He said the Jetpack team goes out of its way to make pricing changes as fairly as possible &#8220;and we don’t want to pull the rug out from anyone, so we’ll certainly consider how people are impacted before making changes.&#8221;  </p>\n\n\n\n<p>Until the limited subscriber import issue has been solved, any pricing changes down the road are only likely to affect newsletters that are just starting out getting people signed up. Apart from this limitation, Jetpack Newsletter is making a competitive debut in the market. For those who are already using Jetpack and have an existing subscriber base, it makes it nearly effortless to add paid subscriptions. Using the block editor is far easier than most newsletter campaign editors out there, and Jetpack streamlines the sending process so creators don&#8217;t have to copy and paste between email services.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 22:24:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.3 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6189:\"<p>WordPress 6.3 RC3 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC3 on a test server and site.&nbsp;</p>\n\n\n\n<p>The WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release.&nbsp;</p>\n\n\n\n<p>For a deeper look into this release, read this overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new since RC2</h2>\n\n\n\n<p>Since the RC2 release on July 25, 2023, there have been approximately 14 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Github</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=07%2F25%2F2023..08%2F01%2F2023&milestone=6.3&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Trac</a>. To prepare for 6.3 general availability, RC3 also addresses several <a href=\"https://github.com/WordPress/gutenberg/pull/53089\">bugs</a> and adds fixes for retrieving templates (<a href=\"https://github.com/WordPress/wordpress-develop/pull/4940\">#4940</a>) and resolving child theme issues (<a href=\"https://github.com/WordPress/gutenberg/issues/53138\">#53138</a>). Thank you for testing, WordPressers!</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by the community of people collaborating on and contributing to its development. The resources below outline a variety of ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Download RC3 for testing</h3>\n\n\n\n<p>You can test WordPress 6.3 RC3 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2:</strong> Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC3.zip\">RC3 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3: </strong>Use the following WP-CLI command:<br /><code>wp core update --version=6.3-RC3</code></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Keep WordPress bug-free—help with testing</h3>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes or plugins? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>This is your final opportunity to test your latest versions against RC3. You will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a>&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>Phase two, soon complete<br />A monumental release<br />Then onto six-four.</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/meher/\">@Meher</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, and <a href=\"https://profiles.wordpress.org/jpantani/\">@jpantani</a></em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 16:55:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Do The Woo Community: Welcome Katie Keith from Barn2 Plugins to the Do the Woo Host Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75760\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://dothewoo.io/katie-keith-new-do-the-woo-host/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:446:\"<p>Today Marcus talks with his new co-host of Woo BizChat, Katie Keith, as she shares her Woo story and what you can expect from these two moving forward.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/katie-keith-new-do-the-woo-host/\">Welcome Katie Keith from Barn2 Plugins to the Do the Woo Host Team</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 10:25:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Start Testing WordPress’ New Interactivity API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147355\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/start-testing-wordpress-new-interactivity-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2510:\"<p>Earlier this year, WordPress contributors announced that they are <a href=\"https://wptavern.com/wordpress-contributors-propose-new-interactivity-api-for-frontend-blocks\">working on a new Interactivity AP</a>I that will allow developers to build interactive blocks. This API will support the kinds of frontend experiences that let visitors interact with content and get feedback without having to refresh the page.</p>\n\n\n\n<p>Automattic-sponsored contributor Luis Herranz, who has been working on the API, is now <a href=\"https://twitter.com/luisherranz/status/1686064632400658439\">encouraging developers to test it</a> with their own blocks. <a href=\"https://wptavern.com/gutenberg-16-2-brings-improvements-to-pattern-management-introduces-vertical-text-orientation\">Gutenberg 16.2</a> included the Interactivity API under the Experiments flag and this version or later is required for testing it.</p>\n\n\n\n<p>Developers can follow the API&#8217;s <a href=\"https://github.com/WordPress/gutenberg/blob/trunk/packages/interactivity/docs/1-getting-started.md\">&#8220;Getting Started&#8221; guide</a> on GitHub to scaffold an interactive block with `@wordpress/create-block`. Take a look at the <a href=\"https://github.com/WordPress/gutenberg/discussions/52904\">roadmap</a>, which has an extensive list of tasks the team has in mind for the initiative and will include tracking issues for features as they progress.</p>\n\n\n\n<p>Those who are testing the Interactivity API can follow and participate in the discussions happening in the new <a href=\"https://github.com/WordPress/gutenberg/discussions/categories/interactivity-api\">Interactivity API category</a> on GitHub. This early testing invitation is for those who are eager to help shape the API and offer feedback.</p>\n\n\n\n<p>&#8220;If you want to use the Interactivity API in your projects, please subscribe to this discussion where we will provide updates with instructions for migrating your code each time there is a breaking change,&#8221; Herranz said.</p>\n\n\n\n<p>There is no official documentation yet, but a the team is working towards creating a bare-bones version first which will be used as the base for the official docs further down the road. The documentation efforts are being led by Automattic-sponsored contributor <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> and anyone willing to collaborate is invited to <a href=\"https://github.com/WordPress/gutenberg/discussions/51928\">join the conversation on GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 21:38:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.org blog: People of WordPress: Ihtisham Zahoor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10231:\"<p>From administrator to web developer thanks to the supportive WordPress community. Through learning from other software users in Pakistan, Ihtisham Zahoor knew that his life would change. He moved cities and careers to make his life through open source.</p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&ssl=1\" alt=\"Ihtisham Zahoor in the moutains.\" class=\"wp-image-15478\" />\n\n\n\n<p>Ihtisham, from Haripur, a city in northern Pakistan, said: “The WordPress community made me a firm believer in the power of open source software. This is why I am an enthusiast and one who enjoys contributing back to the community via writing, speaking, and helping organize meetups.”</p>\n\n\n\n<p>When Ihtisham discovered WordPress, his fascination for working with computing grew. He knew he did not want to just work in administration his entire career.</p>\n\n\n\n<p>Ihitsham describes himself as an ‘introvert’ and therefore the idea of remote work appealed as he could still add value to others through technology. He was intrigued by the thought of the freedom to choose his work hours. However, without access to others who had already transformed their careers and lives through web development, he felt he ‘had no path to follow to turn my dream into a reality.’</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Challenges become opportunities to learn when there is an active community&nbsp;&nbsp;</strong></h2>\n\n\n\n<img width=\"675\" height=\"900\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=675%2C900&ssl=1\" alt=\"Ihtisham Zahoor wearing a sweatshirt with the London tube sign \'Mind the Gap\'.\" class=\"wp-image-15480\" />\n\n\n\n<p>Lacking any kind of informed support network to advise or guide him, Ihtisham devoted time to online research to find the next steps he could take. Looking back, he believes that for those who are not in a network with others with similar interests, it can be hard to keep learning and experimenting with new things. Isolation can be a barrier to working in web development.&nbsp;&nbsp;</p>\n\n\n\n<p>He said: “I think it is not easy to stay motivated when there aren’t immediate rewards for the hard work we do. Sometimes, weeks would go by when my only focus would be to stay motivated rather than give up.”</p>\n\n\n\n<p>After another two years of combining learning and work, Ihtisham took up using WordPress as a full-time career. He moved to the capital of Pakistan, Islamabad. It was not easy at first. He recalls: “After many failed attempts at getting hired and desperate moments, I finally received an offer from a digital agency as a web developer focused on the WordPress platform.”</p>\n\n\n\n<p>He added: “Moving to work with a bigger agency was one of the best decisions of my life as it helped me with my professional growth by becoming familiar with the whole WordPress ecosystem in a supportive environment. I was valued for my opinions in the web projects in which I was involved. I was also appreciated and encouraged for the open source work I did for the company.” He summarized his enthusiasm for WordPress like this: “It is really interesting figuring out what is happening in the backends. I like problem-solving and finding solutions which you can do with WordPress.”</p>\n\n\n\n<p>During the Covid-19 pandemic, Ihtisham moved to join a start-up based in his hometown which provides web development services to international clients. He works as a developer and has the opportunity to learn more about client communication and project management. “WordPress has opened up so many opportunities for me. It has been an exciting journey for me with lots of learning every day,” he said. In particular, he has discovered an interest in APIs and regularly uses his spare time to follow tickets in the hope of one day contributing even more to topics, such as, third-party app integration through APIs on WordPress sites.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Give back through WordPress community</strong></h2>\n\n\n\n<img width=\"800\" height=\"599\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=800%2C599&ssl=1\" alt=\"Ihtisham Zahoor speaking at a meetup.\" class=\"wp-image-15477\" />\n\n\n\n<p>It was not just software that made a difference in Ihtisham’s life. Joining a welcoming and sharing community was transforming for him. Recalling those early days of isolation, he values the WordPress community and is wholly committed to the power of open-source software. He now enjoys writing, speaking, and organizing meetups to give back to both to the community. He has written software for the platform and contributes to the Core work, which he describes as a ‘humbling’ experience. He is fond of <a href=\"https://islamabad.wordcamp.org/\">WordCamp Islamabad</a> and in 2023 is on the organizing team to help bring both WordPress and its community to others in Pakistan.</p>\n\n\n\n<p>“My first experience,” he said, “was that everyone was so friendly and open to sharing what they have learned, even though they were all busy working. This really had an impact on me. It really helped me and gave me the confidence that I could work with WordPress…. It was a real step forward for me joining this community.” </p>\n\n\n\n<img width=\"1024\" height=\"512\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&ssl=1\" alt=\"Ihtisham visited WordCamp Karachi.\" class=\"wp-image-15482\" />\n\n\n\n<p>A particular meeting in 2018 led to new friendships through the WordPress community. Ihtisham was on a train to Karachi for the first ever Pakistani WordCamp in 2018 and met a group of fellow attendees he now regards as close friends. What impressed him most about the camp was that although he met many people with considerable expertise, they also had a generosity of spirit and humbleness in their willingness to share this knowledge. in sharing it. Now, he and this group of friends make a point to taking trains across the country, which allows him to fulfil another dream of traveling widely. He says these things and other ‘side benefits’ have been made possible by the WordPress community, and for that, he is &#8216;forever grateful&#8217;.<br /><br />Ihtisham particularly wanted to share his story through this People of WordPress article to encourage those starting with little or no support to remain persistent. He knows from experience breaking into the tech world can be hard, especially when you may be switching from doing something else and have no ‘track record’ to offer. </p>\n\n\n\n<p>He feels he is a living example of how perseverance can lead to success. He offers these words to anyone thinking of making a move into development using the WordPress platform: “I attribute my success (financial and mental well-being) to the open-source nature of WordPress and its amazing community. It would not be possible to learn and use the plethora of free tools WordPress provides if it weren’t an open-source platform. It is for that reason I feel obligated to contribute back to this platform to the best of my abilities.” To those who are finding getting going difficult, as he did, he adds: “Get yourself a clear learning path and just dive in doing WordPress, and things will get better for you over time as they were for me, I promise. Good Luck!”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<p>To help you discover more about how to use the WordPress software, there is a free resource from the community, <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Ihtisham Zahoor (<a href=\"https://profiles.wordpress.org/shaampk1/\">@shaampk1</a>) for sharing about his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Nalini Thakor (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), and Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>) for interviews, the feature and collaborating on images. To Chloe Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Mark Smallman (<a href=\"https://profiles.wordpress.org/marks99/\">@marks99</a>), and Mary Baum (<a href=\"https://profiles.wordpress.org/marybaum/\">@marybaum</a>) for reviews. Thanks to the late Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\">@sthakor</a>), Maja Loncar (<a href=\"https://profiles.wordpress.org/majaloncar/\">@majaloncar</a>), Maedah Bahtool (<a href=\"https://profiles.wordpress.org/maedahbatool/\">@maedahbatool</a>) and other members of the Marketing and Polyglots Team for their contributions.</p>\n\n\n<p>The People of WordPress series thanks Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for their support.</p>\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\"><img width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" /><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 20:22:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: WordPress Performance Analysis Finds Translations May Significantly Slow Down Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147322\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/wordpress-performance-analysis-finds-translations-may-significantly-slow-down-sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3110:\"<p>After a recent in-depth performance analysis earlier this year showed that translations can have an impact on server response times, WordPress contributors are <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">proposing</a> half a dozen technical solutions for consideration to improve performance for the ~56% of WordPress sites that use translations.</p>\n\n\n\n<p>&#8220;Initial benchmarks showed that the median loading time for a localized site can be <strong>up to 50% slower</strong> than for non-localized sites, depending on which themes and plugins are being used,&#8221; Google-sponsored WordPress core committer Pascal Birchler said.</p>\n\n\n\n<p>Based on <a href=\"https://github.com/WordPress/performance/issues/171\">recent discussions</a> on GitHub, the Performance team has whittled it down to an updated list of six possible top contenders for speeding up sites with translations, including the advantages and disadvantages of each:</p>\n\n\n\n<ul>\n<li>Solution A: Use different file format</li>\n\n\n\n<li>Solution B: Native gettext extension</li>\n\n\n\n<li>Solution C: Cache translations</li>\n\n\n\n<li>Solution D: Lazily evaluated translation calls</li>\n\n\n\n<li>Solution E: Optimize/Rewrite existing MO parser</li>\n\n\n\n<li>Solution F: Splitting up translation files</li>\n</ul>\n\n\n\n<p>Localized WordPress sites currently download <code>.po</code> and <code>.mo</code> files that contain the translations, but the first suggested solution proposes storing translations in <code>.php</code> files and using the <code>.mo</code> file as a fallback, as Birchler proposes that PHP loading and executing another PHP file would be a faster approach. He has a proof of concept on GitHub at at <a href=\"https://github.com/swissspidy/wp-php-translation-files\">swissspidy/wp-php-translation-files</a> and <a href=\"https://github.com/swissspidy/ginger-mo/\">swissspidy/ginger-mo</a>.</p>\n\n\n\n<p>&#8220;When looking at all these factors, it appears that a <strong>revamped translations parser</strong> (<strong>solution E</strong>) could bring the most significant improvements to all localized WordPress sites,&#8221; Birchler said. &#8220;Especially when combined with a <strong>new PHP translation file format </strong>(solution A), which Ginger MO supports, the i18n overhead becomes negligible. Of course the same risks associated with introducing a new format apply.</p>\n\n\n\n<p>&#8220;On top of that, a revamped i18n library like Ginger MO could also be combined with other solutions such as caching or dynamic MO loading to potentially gain further improvements. However, those routes have yet to be explored.&#8221;</p>\n\n\n\n<p>The Performance team plans to test these ideas further on a wider scale through its <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab</a> feature project after gathering feedback from the broader community. August 6, 2023, is the deadline for leaving feedback on the <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">proposal</a>, which includes benchmarks and more details from the analysis.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 19:29:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Gutenberg Times: Gutenberg Changelog #87 – Patterns, Gutenberg 16.3 and WordPress 6.3.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=25089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:57711:\"<p>Anne McCarthy and Birgit Pauli-Haack chat about patterns, Gutenberg 16.3 and WordPress 6.3. </p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<p><strong>Anne McCarthy</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://profiles.wordpress.org/annezazu/\">WordPress profile</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/in/anneguionmccarthy/\">LInkedIn</a></li>\n\n\n\n<li>WPSlack channel <a href=\"https://wordpress.slack.com/archives/C015GUFFC00\">#FSE-outreach-experiments</a></li>\n</ul>\n\n\n\n<p><strong>WordPress 6.3</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">Hallway Hangout: Performance Improvements for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/25/the-benefits-of-prioritizing-and-measuring-performance-in-wordpress-6-2/\">The benefits of prioritizing and measuring performance in WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a>. </li>\n</ul>\n\n\n\n<p><strong>Gutenberg 16.3 </strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">What’s new in Gutenberg 16.3? (26 July)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-16-3-adds-new-tools-for-patterns\">Gutenberg 16.3 Adds New Tools for Patterns</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, hello and welcome to our 87th episode of the Gutenberg Changelog podcast. In today&#8217;s episode, we will talk about Gutenberg 16.3 and WordPress 6.3. I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full-time core contributor for the WordPress open source project. And today, I have the special pleasure of welcoming Anne McCarthy on the podcast with me. Anne is a product manager in Automattic and also a sponsored contributor on the Automattic&#8217;s Five for the Future program. I&#8217;m thrilled to have you on, Anne, how are you today?</p>\n\n\n\n<p><em>Anne McCarthy</em>: I&#8217;m thrilled to be here, so thank you for having me. I&#8217;m doing pretty well, I&#8217;m talking all about WordPress all day, which is a wonderful day in my book, so.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: In mine too. Yeah, so that&#8217;s why we&#8217;re good on this podcast together. So, you are just coming from the latest Hallway Hangout with the performance team. I know it&#8217;s only a half an hour ago or so, is there anything on the takeaways that you want to share right here with the listeners?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, so one of the things that stood out to me on the call, and beyond just the performance improvements that will be out of the box when you&#8217;re using WordPress, is a resolution to a 14-year-old track ticket, which blew my mind, where WordPress 6.3 will actually introduce support for registering scripts with async and defer attributes. And the reason I bring this up, it&#8217;s all part of the script API, is that people have to adopt it to see the impact. So, this is something that&#8217;s bundled under performance improvements and something that actually wasn&#8217;t on my radar in the same way, but I wanted to call it out for plugin authors because it&#8217;s one of those things that we need people to adopt in order to see the benefits.</p>\n\n\n\n<p>And there&#8217;s also great backwards compatibility. One of the things Felix called out was, let&#8217;s say you have a really large plugin and you have your own extensions within that plugin sphere, if those extensions haven&#8217;t adopted these changes, it will default to a more conservative approach. Meaning, there&#8217;s backwards compatibility, and if they&#8217;re&#8230; All of your extensions have it, your major plugin has it, and anything dependent on that major plugin that has that script in place and has the defer async attributes in place, will then upgrade automatically to use the new and improved stuff. So, I just wanted to call that out, I think it&#8217;s a great thing to have in place and we just need folks to adopt it. So, that was a big takeaway for me, beyond just the many improvements.</p>\n\n\n\n<p>And the last thing I&#8217;ll say is we did a data deep dive live on the call, looking at graphs and all this nerdy stuff, which was awesome, showing that basically after releases came out, seeing improvements in things like Core Web Vitals and actually in the data, which proves things from the lab. They talk about, &#8220;The lab shows this,&#8221; so meaning the confined environment versus in the field, so what you actually see in the real world, and what&#8217;s being shown in the lab ahead of WordPress releases is being proven in the field on live sites that are being indexed. So, that was really exciting to see. I don&#8217;t fully understand every aspect of the data but it was cool to go through with people who do.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much for this just-in-time note about the Hallway Hangout. I know your process is that the Hangouts were recorded and you will make a post on the Make Blog in the next few days, where you summarize it and then have all the resources linked up on the post. I also will dig into a little earlier this year, I don&#8217;t know if it was April or May, Felix Arntz, from the performance team, also posted a blog post about the changes and how the improvements were with block themes and these kinds of things. But I think there was one on the Make Blog but they were also on his personal blog.</p>\n\n\n\n<p>So, I&#8217;m going to link that up just to recall that, it was also in the weekend edition but not everybody reads that, or remembers that. I don&#8217;t always remember things, but I know it was in there. Yeah, so performance has been a big, big improvement on WordPress, I saw something like 17% with classic themes and about 20% with block themes, right out of the box, if you don&#8217;t slow your site down with very old plugins, of course. But that&#8217;s another story and outside the scope of this Changelog podcast episode. So, thank you so much. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, thanks for giving us space to talk about that, it&#8217;s exciting.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Listener Questions</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So, I got an email from a listener, thank you so much, an accessibility advocate, and she wanted to know about the best practices to build sites with sidebars on the block themes, and those are read through assistive technology. So, screen readers, when they come to a website, they use the script to content link that comes out automatically with WordPress, but that skip the content also needs a target where to stop.</p>\n\n\n\n<p>So, content needs to be tagged with main to actually have that work. If people are creating sites or layouts with column blocks and each column doesn&#8217;t have any tag, but one is a sidebar that&#8217;s a reusable block, or it&#8217;s a template part, it will read through that every single time on every page, if it&#8217;s not tagged non-content, or a sidebar, or side, or something like that, or the main content is not tagged. Now, you couldn&#8217;t do that with a classic theme from a user interface, but you can do it actually with a group block that has these HTML elements that you can designate your content being either a main or a side. But the most important part is that you wrap whatever sidebar you have into a group block and then select those HTML elements. They&#8217;re also not very prominent, they&#8217;re in the advanced section.</p>\n\n\n\n<p>So, I just wanted to, those who are creating themes through the site editor or helping others to create templates, to be aware of these accessibility ramifications, or to make it known what people who are not visually impaired can see, that that&#8217;s repeated content, but the screen readers that help those that are impaired to go through the internet websites need a little help from the content creators or from the template creators. So, I&#8217;m sure there will be some more information about that, I just wanted you to be aware, and thank you for the listener to pick up on that and point that out. Accessibility is such an important part of web design and web building, that we need to make sure that if we use just the interfaces that we have those tools in place.</p>\n\n\n\n<p><em>Anne McCarthy</em>: I couldn&#8217;t agree more. Thanks for going through that too, it&#8217;s always good to learn about this stuff and to make sure that the default implementation ideally, can be done well. And this is where folks can create patterns into the parts to have this set up automatically in their themes with the right stuff in place. So I also encourage blocking authors to think about that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I think it&#8217;s sometimes really hard on the user documentation to point out the higher ramification. If you just point out this little piece on the sidebar that is a new interface, what is the bigger objective for that?&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Announcements</strong></h3>\n\n\n\n<p>So, I&#8217;m really glad that the listener sent me that email and let me know about that, that&#8217;s a good question. So, Anne, you just published a post on the news site, speaking of changes for wordpress.org and it&#8217;s titled, Synced Patterns: the Evolution of Reusable Blocks. On the Podcast, we talked a little bit about the upcoming changes, so what is this post all about?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, so this builds on work that&#8217;s done in 6.3, to bring the creation of patterns to the experience, and that&#8217;s part of that you can sync or unsync patterns, which basically consolidates the concept of reusable block into the new concept of synced patterns. So this post is just trying to flag the change for people because reusable blocks is a known concept in the WordPress community, and retiring such a known concept deserves a lot of attention. And as part of this, there will be documentation updated, I am keeping an eye on that there, but this is just one of many efforts, including nudges in the interface to help communicate this change to folks. So, just see this as part of a larger effort to make sure that we&#8217;re bringing folks along as things evolve. I&#8217;m personally really excited because I think compared to the concept of reusable blocks, which sounds almost more technical than it should be, I think patterns is a much more approachable concept for folks to get behind and to use.</p>\n\n\n\n<p>So, I&#8217;m really excited and I hope it helps surface this more for folks, whenever they&#8217;re working with WordPress. But yeah, it&#8217;s pretty exciting. So, unseen patterns are essentially what you know and love as patterns today, you can put them in your post or page or template and customize it as you&#8217;d like, it&#8217;s not synced across the entire system. Sync patterns are just exactly how our usable blocks worked. They&#8217;re synced across things, you can have a way to convert to blocks if you want to edit it individually and turn it into an unsynced pattern. But yeah, there&#8217;ll be a whole interface to manage all your patterns, if you&#8217;re using a block theme, if you&#8217;re using a classic theme, we basically just reuse what&#8217;s in place for the reusable block screen. So, honestly, it&#8217;s a lot of just interface changes for, if you&#8217;re using a classic theme and for a block theme it unlocks a lot of functionality in terms of being able to manage all your patterns across themes and plugins and all sorts of stuff.</p>\n\n\n\n<p>So, yeah, it&#8217;s a huge, huge step forward and a big change, so hopefully this helps get you prepared, and if you have questions or things that you want answered, yeah, I&#8217;m @annezazu, Let me know what we&#8217;re not thinking about because I&#8217;m sure there&#8217;s a lot.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and I had some conversations before in the last two months, once I saw that this change is going to come, and I was really excited that finally we have the feature to grade your own patterns in your own site. I think there were quite a few plugins out there that had very high installs and it&#8217;s now coming to core. I think the design team and the developers did a great job in just changing the name but leave everything else in place, for those who use reusable block or created reusable block, everything will be familiar, just the names are going to change. The concept itself is not necessarily retired, it&#8217;s just going to build into the pattern metaphor more. Because really, the only difference between a pattern and a reusable block was the synchronization over the instances. Yeah, definitely.</p>\n\n\n\n<p>Yeah, so we talked about it here at the podcast before and it brings us a leap forward, it also opens up the doors to additional changes. Because what I hear also, and you probably hear it even more, is what&#8217;s missing is that if you have a pattern and that&#8217;s used around the website, but all of a sudden you want to change styles, you&#8217;re not catching every pattern because you need to open up that, switch it out, you have to work around that. And so, partial synced patterns are now possible because we have an interface now, and it&#8217;s certainly further down the roadmap to find a way for the canvas to remember this was an unsynced pattern, but it can be partially synced. Because that is certainly missing in between where you don&#8217;t want to update content but you want to update the styling here, and the content stays the same that it was there.</p>\n\n\n\n<p>So, it&#8217;s all a little bit&#8230; But bringing it all together is reducing the cognitive load on things and have it all in one metaphor rather than have different ways on doing things. And you&#8217;ll find it just the same way you found it before. The icons are the same and the color is the same and the list views&#8230; I think you&#8217;ll find that the switch over to the new thing from reusable block to sync pattern is relatively&#8230; I wanted to say harmless, but smooth. Painless is, I think, the one that I was looking for.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yes.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What’s Released &#8211; WordPress 6.3</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So, that brings us to our section on what&#8217;s released. WordPress 6.3 is coming fast, Release Candidate 2 is out, has been out since the beginning of the week, and is ready for testing. The final release is scheduled for August 8th, and that&#8217;s less than two weeks to go. So, what&#8217;s the latest information about 6.3? Is everything on track? The dev notes have been out, your post is out about the sync patterns, you also published a post about the accessibility improvements and there have been a ton of dev notes also for the performance improvements. Is there anything else that has been new or what are the features that you are most excited about?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Oh man, that&#8217;s a great question.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Can you pick?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, can I pick? I will say, actually, I&#8217;m very excited&#8230; I did a YouTube video on this. There&#8217;s some hidden features and one of them, that&#8217;s not really hidden, but I think it can be taken for granted, it&#8217;s really the block theme previews. That has been something, that people have been unable to preview a block theme. So to even try to explore a required setting up a test site required, or just fully activating it without knowing how it might impact your site, and the ability to preview&#8230; And the preview uses the site editor, so you&#8217;re both getting a sense of what the theme will do, how it might impact your site, what bells and whistles it has, and it allows you to actually dive into the site editor itself and get a feel for it. And I&#8217;m just completely excited about that.</p>\n\n\n\n<p>I think that will be a huge thing with adoption that will be the unsung hero of this release in my mind. It&#8217;s been something that&#8217;s been a pain point for a long time and a lot of work went in to make it smooth, and yeah, it&#8217;s something I&#8217;m very excited to play around with and to see how it impacts things and helps folks step into that world. The only other thing&#8230; Thank you for calling out the accessibility improvements as well, so much work has gone into that with a lot of these features and more work remains to be done. But I&#8217;m in particular excited about some of the improvements to List View, which I know Alex Stein spent a lot of time doing, and so I want to call that out in particular as something that I&#8217;m quite excited about. I think the only other thing on my mind relates to, right now, there is some conversation around footnotes and how footnotes are being stored, and there&#8217;s some interesting dialogue there.</p>\n\n\n\n<p>I think we&#8217;ll end up seeing fixes get in place for it, but it&#8217;s just neat how these tiny blocks that are packed full of power are continuing to be iterated on at this point and getting bug fixes. So thank you to everyone who&#8217;s testing, because a lot of that has come from testing and feedback. And I know it might seem like, oh, we&#8217;re in the RC, things are smooth sailing, but you never know. We&#8217;ve had to remove stuff, we had to remove something in 6.2, so we still have time for the final release and we want it to be as polished and bug-free as possible.</p>\n\n\n\n<p>So it&#8217;s a very high impact time to be testing WordPress 6.3. This is actually my favorite time, because if you find something now, it&#8217;s also not great, but if you find something now, you prevent it for millions of people, so I think it&#8217;s a really exciting and important time. But there&#8217;s nothing, I&#8217;m trying to think of anything else in my mind that&#8217;s super&#8230; Beyond all this pattern stuff and all the other stuff that we&#8217;ve been talking about, but the blocking previews really does stand out to me personally, as something as I&#8217;m particularly excited about.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I really like how the style book is happening around the site editor, that you can really see all the&#8230; Even if you change something on the style variation and then propagate it, you see how it changes all the blocks, or if it doesn&#8217;t change the blocks. So, is the theme preview actually also using the style book? If you go into a preview and then you see the site editor, can you access the style book to see how the…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes. Yeah, that&#8217;s what I thought.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yes, you can. Yeah, the entire site editor is using the preview, it&#8217;s amazing. The main thing that&#8217;s missing right now that some folks have brought up is the ability to schedule and save this draft, those different things. So that is work that needs to be done, that got brought up in the product demo, that needs to be done still, but we&#8217;ll get there. I think that&#8217;s part of the fun about iterating on this stuff, is like, yeah, yeah, totally, that is part of the roadmap, that&#8217;s something we&#8217;ll get to.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I still remember the excitement, when the customers got that feature to schedule updates.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Really?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, where people got ready for Christmas changes or for special sales on their website and then they could put it in the customizer and schedule it and then go on vacation or whatever.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Which is very cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, which is really cool. And it wasn&#8217;t so long ago, so that&#8217;s why people are still, come from that excitement and find it missing. But yeah, getting the previous in is really big. Yeah, absolutely.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Now, also…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Mm-hmm, go ahead.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Revisions is the only other one that just came to mind, as we&#8217;re talking about revisions and saving and all that sort of stuff. The visual nature of the star revisions is so cool. Template and template part revisions didn&#8217;t make it for 6.3, but I&#8217;m hoping to see that in 6.4, and I think when that completion happens, I&#8217;m curious to see what kind of confusion might come up around if you have multiple different&#8230; I&#8217;ve already noticed that, some calls for testing, where people are like, oh, I made a change to the title of this, whatever, and then try to roll back with star revisions, and it&#8217;s like, oh no, you actually need do that with template revisions. So, having an intelligent system that works and makes sense, you know where to roll back, but there&#8217;s been so much good feedback about how visual and easy and beautiful the star revisions are. So, that&#8217;s another hidden feature that I like to talk about.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s great. The hidden features of 6.3, with Anne McCarthy. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Could be here for two hours if I do that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, we have an open-ended thing here. Sooner or later I need to go to bed though. So, Anne and I, we are nine hours apart. So, Anne just got up and I&#8217;m at the end of the day, so.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Gutenberg 16.3</strong></h3>\n\n\n\n<p>So, Gutenberg 16.3, last time I looked it was about 180 PRs…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Ooh.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Enhancements</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230;it&#8217;s one of the larger Gutenberg releases from 54 contributors. Two of them were first timers, and I think it was a lot of polishing and bug fixes, but there were also a few enhancements that made it into 6.3, and some of them don&#8217;t, probably, but let&#8217;s talk about them. So, the first one that I see was that you can have more intuitive archive titles for your query title block, there&#8217;s quite a few changes around that. Those don&#8217;t make it into 6.3 though, but it&#8217;s because it&#8217;s the first time it&#8217;s in there I think. So you can change the titles of your archive pages, remove the archive type, and what else is in there?&nbsp;</p>\n\n\n\n<p><em>Anne McCarthy</em>: I think this is hugely helpful because this is definitely something where we&#8217;ve gotten feedback from folks, where it was too generic before, it just showed archive title or whatever. It would not say specifically what you&#8217;re looking at, and when you&#8217;re creating a new template and you&#8217;re a first time user you might delete it, because you don&#8217;t know what it is. So knowing what it powers, knowing what it does, it&#8217;s a huge step up and I&#8217;m quite excited about this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah. And then the whole change the title of your archive pages is such an improvement towards the classic experience, because you always needed a developer to remove something or to change the title and now you can do it by yourself and you can create any kind of different templates with a query block, or the post template block. Yeah. So, yeah, next up is the add, renaming, duplication, and deletion option to patterns. That&#8217;s certainly coming into 6.3, patterns now have a dropdown menu, you can assess the three dots and then allow you to rename, duplicate and delete patterns easily. It wasn&#8217;t easy to do that before, especially the removal of patterns from your my patterns kind of thing. Yeah, it was a little bit convoluted because it wasn&#8217;t through the editor, now you can do it all through the editor. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: I&#8217;ll also note, one of the reasons why this is also so important to get in and why it was backported in my opinion, is that when you are setting&#8230; You create a pattern and you set the sync status, so synced or unsynced, you cannot change that status after the fact. So, let&#8217;s say you make a mistake, you create an unsync and you&#8217;re like, wait, actually, I want this to be synced. Before you&#8217;d have to go in and copy/paste, this whole convoluted process, now, with the duplication you can duplicate, and when you duplicate you can basically decide the sync status. So that&#8217;s one of the things that came up, was we wanted a way to make it easy to give people control without having the option to change the sync status back and forth because that will create some muddiness.</p>\n\n\n\n<p>Let&#8217;s say you synced a pattern and then you randomly unsynced it two months later, imagine how that might create some chaos across your site. So, to limit that, we just basically said you cannot change the sync status after it&#8217;s created, but we&#8217;ll add in options to make it easy to manage those things. And things like, renaming and deleting are also just important basics to have, so yeah, I&#8217;m glad to see this in, and I think not being able to set the sync status might cause some confusion, so I&#8217;m curious how that lands with 6.3 and how we can integrate it for 6.4.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah, I had some questions that were around that before, but the duplication feature, yeah, one click duplication, it&#8217;s pretty much, your work is not wasted, you just can replicate it and move forward with that. Yeah. The next piece is enable focus mode editing patterns. It was available for template parts before the focus modals, but now it&#8217;s also available for patterns, and it is then also backport it to 6.3&#8230; I&#8217;m just going to double check.</p>\n\n\n\n<p><em>Anne McCarthy</em>: I&#8217;m nearly positive, yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, me too, but…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Potentially not. Let&#8217;s see if it works.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Potentially not, yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Maybe we should consider it. It might be because a new feature, but I&#8217;m like&#8230; We&#8217;re both on the corridor triage team here, it&#8217;s like, thoughts on backporting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Maybe we should put it on the 6.3 editor task.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah. Yeah, let&#8217;s drop it into the triage session we&#8217;re doing today. Nice, I love it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right, and the next part is that&#8230; Well, it&#8217;s the copy, to make sure that reusable is removed from menus and all that, for the reusable block. The next part is the sticky header and pagination for pattern page. That is really cool.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah. I love seeing that. And that basically takes the patterns section of the block editor and ensures that when you&#8217;re scrolling down, unless you have a ton of patterns, that top heading that you can filter with will still appear, and it&#8217;s a quality of life improvement and definitely something that, if you have lots of patterns, which a lot of sites do with block themes, it&#8217;s pretty critical to be able to switch between and see what you&#8217;re actually seeing. So, I was pretty excited to see that in there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I like the filter part, that you can just show me the synced patterns, just show me the unsynced patterns, so that&#8217;s really cool. The next one is, I wanted to mention it because that&#8217;s one of the changes, so the links that go to manage reusable blocks and manage patterns go to different places now. So, they go now to this site editor, where all the other interfaces are, to interact with patterns synced and unsynced patterns. There is that place, the WP admin looking place, still there, but now you can use all the site editor for the editing part. So, I think we will have that quite a bit in the next few releases, that we have a new managed thing, and then we can go back to the old thing, just because it might not be feature parity or so. I think that&#8217;s the first place where we can train ourselves with that.</p>\n\n\n\n<p>So, I like the site editor very much, but I&#8217;m still often going back to the WP admin and see a few things there. Yeah. Yeah, we talked about the sync status separation on the filter control already, but that&#8217;s coming also to 6.3, and it was backported to Beta 4. The components have been updated to support defined IDs for the text control component, that means that you can target them with CSS and also with JavaScript, and directly with the IDs, and identify…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Very cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230;particular instances of the text control component, which is really important for a lot of extensibility usage there. There were some changes for the Interactivity API, and that&#8217;s only on the Gutenberg plugin. That, of course, every time we have a new thing in WordPress, we need to think about turning it off. What is necessary to turn things off? And so, the same with Interactivity API, it has been merged into 16.2, but not for 6.3, not for the WordPress, it&#8217;s coming in 6.4. But even with the Gutenberg plugin enabled, some people still want to turn off the Interactivity API because it interferes with their extensions.</p>\n\n\n\n<p>So, there&#8217;s now a filter to do this, and there&#8217;s also a runtime support to the WP style directive, so you can, on the fly, change the style for some of the Interactivity API entities. So, that&#8217;s these two things of Interactivity API. I&#8217;m sure there will be, very soon, a little bit more, a higher level, but also a more strategic announcement or strategic documentation about the Interactivity API. I know a few of our coworkers are working on that, to get this out, but with all the documentation it&#8217;s always a little bit behind the features there. So, go into the PRs to learn more about it.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, I&#8217;ll note too on that front. I got some really good feedback from someone saying, &#8220;Hey, this project&#8217;s been hard to keep on top of.&#8221; And so that was feedback that&#8217;s been brought back to the folks working on that. So, I think, last I can remember, from a conversation, my brain&#8217;s a bit mushy in the last couple of weeks, but I think they&#8217;re going to try and experiment with using discussion issues as a way to keep track of things, which is a bit of a departure from using overview or tracking issue labels in GitHub, but I think it&#8217;s going to be interesting and we can learn from that. But it is, as you said, anytime you add something, we need to think about removing it, and I know the Interactivity API is likely slated for 6.4, so it&#8217;s definitely something you can keep on top of and this was a great thing to call out. I could see folks skimming over this and not realizing how important it is. So, it&#8217;s a good one to keep in mind.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. In WordCamp Europe, I talked with quite a few people&#8230; Well, there were 2000 people there and I probably talked to 200 or so. So, I couldn&#8217;t talk to everybody. But there were quite a few people who were a little bit hesitant with a block editor because they&#8217;re PHP developers, and JavaScript is not really their thing, and they were really excited about the Interactivity API and the bigger emphasis on the dynamic blocks rather than the static JavaScript block. Because they can use the render that they did in shortcuts and then in widgets or something like that, all the render code, they can now use for blocks and then put the Interactivity API just in the directives in there to, to make it replicate some of the features that they had before. Which seems to be easier than the JavaScript, jumping all in on the JavaScript side. Yeah.</p>\n\n\n\n<p>So, well, from the block library section, there&#8217;s one component, the range control, that now has an additional attribute for the default size of 40 pixels. I think it does a few other sizes, but you can now use it if you use it in your own plugin settings pages or your own sidebar items, you can have a different size as a default size managed there. So that&#8217;s pretty cool.</p>\n\n\n\n<p><em>Anne McCarthy</em>: My understanding of that one was that it was updating the component to use the 40 pixel size and the design, but I could be wrong about that. I know Rich was working on that. So, I think it&#8217;s less having a default set and more having consistency across the settings. It&#8217;s a design quality of life. Because right now I think that settings page has been shifted around, but yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s what I get from the PR too, but it&#8217;s an additional attribute or a different component for the range control, because they need to keep it backwards compatible. So, what goes for the core range controls, the previous attributes and range control sizes are still in there, so it&#8217;s practically an enhancement there. But the core view is the new default, 40 pixel thing there.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s what I understood. But I might be wrong, I&#8217;ve been wrong before, so.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Same. Same. Been looking at too much stuff anyway.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>New API</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, sometimes you make it up as you go along, right? So, the next item is about the nested inner blocks. There&#8217;s a new API, or at least stabilizing existing API for default block, direct insert, and get direct insert block selectors, that were previously experimental, and it was hard to build on top of them. And one of the panelists that were on our past live Q&amp;A, Seth Rubenstein, stabilized those, as a first time contributor, stabilize those APIs. So he can also work on a separate PR, that he shared some code from their Pew Research work on quizzes with the core developers, with core. So, that&#8217;s really good that community developers also stabilize some of the APIs so they can continue on their quest of making the plug editor more versatile.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, I love seeing this, and Seth has been awesome to be driving stuff forward, with really practical use cases, and I think it&#8217;s a great example of using and extending Gutenberg and the core editor, and then also contributing back in a way that furthers it and is in line with the goals of this project. So, I think it&#8217;s really exciting and cool to see this moving along.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And they want to make some of the quiz code available as plugins, but you&#8217;re not supposed to put in plugins in the repo when you have experimental APIs in there. So yeah, that&#8217;s where this work also comes in, so it&#8217;s really important to make this all work in stable conditions.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Bug Fixes</strong></h3>\n\n\n\n<p>The next part is for patterns and alternative grid layout to improve keyboard accessibility. That&#8217;s one of the accessibility improvements that you were talking about before.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, as we&#8217;ve talked about just generally adding new features, accessibility does need to keep up and we need to have it accessible for all folks. And so, this just makes a change to using a standard UL, with keyboard tab indexes, to try and improve keyboard accessibility in particular. And I&#8217;m nearly positive&#8230; Scroll down. Yeah, I was going to say, AFercia who is, that&#8217;s the GitHub username, he is sponsored by Yoast, did a great job reviewing this, and to the point that Alex Stein was like, &#8220;This looks good to me.&#8221; And so, it&#8217;s another great example of showing the back and forth between the teams, but I also would love to get to the point where this is done by default and not caught later. So, it&#8217;s great to see the collaboration and to see this being done. And I know the accessibility team is always looking for more help, so it&#8217;s just great to see the back and forth and it is back forwarded to the release.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: To 6.3, yeah. Yeah. Yeah, I&#8217;m really glad to see Andrea coming back to the accessibility team. He did take a break from working on the accessibility team, but I think he found quite a few contributors now really digging into Gutenberg. So he felt a little lonely about three or four years ago, before the pandemic definitely, and so I&#8217;m glad he&#8217;s contributing back again on the team. And sponsored by Yoast, just to mention that once in a while. Great. The next part, yeah, so there is a fix to apply text color selection to link color if link color isn&#8217;t active. That has been a long-standing issue with the block editor, that people who changed the text color on the paragraph didn&#8217;t get the same color also for the link color and needed to change that separately.</p>\n\n\n\n<p>And some people, because it&#8217;s not a default control on the paragraph, just didn&#8217;t know about the link color and how to change it, and it really wanted to not make the changes and couldn&#8217;t dream up the new design. So, I&#8217;m really glad that that is now by default. Well, of course if you want to change the link color you can, but if you just change the text color in a paragraph, it automatically also changes the link color.</p>\n\n\n\n<p><em>Anne McCarthy</em>: And I want to call out, that that was part of an effort on a project board, which is a bit in the weeds, but the UX and Polish project board is a board within the Gutenberg project that is specifically for just super actionable issues, that are typically, quality of life, as the name suggest with Polish. And then user experience, so how can we make it just super intuitive? So, I just want to point that out, is the more you can write really targeted contained requests that are like, this is just a pain in the butt, I run through this a couple of times a week or something like that, it&#8217;s a great consideration for the UX and Polish board.</p>\n\n\n\n<p>I think there&#8217;s been maybe 80 items completed as a part of the UX and Polish board, which is kind of wild. And it&#8217;s something that I know a lot of folks keep an eye on, and it&#8217;s a great, if you&#8217;re a new developer and you want to get started, it&#8217;s also a great place to go and look at ways you can improve the project. So, I was excited to see that done as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Does it make sense to share the link to the project board in our show notes?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, let&#8217;s do it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; so all the developers can grab things on what they&#8217;re interested in, and see the progress on it? Or even just test some of the PRs that are available and see if they are doing what they&#8217;re supposed to do.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Performance</strong></h3>\n\n\n\n<p>Yeah. So, the next thing is add client-side pagination to the panel list, client-side means in your browser, so you don&#8217;t go back to the server to get the next pages of patterns. I think that&#8217;s definitely a quality of life improvement. And this also has been ported back.</p>\n\n\n\n<p><em>Anne McCarthy</em>: This is the fun time with Gutenberg releases, where it&#8217;s like, what&#8217;s backported?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: What&#8217;s not? It was cherry-picked for everyone.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s synced with the core WordPress. Yeah, it doesn&#8217;t work. What&#8217;s backported? Yeah. What else? Do you want to talk about the work that&#8217;s done with the TinyMCE compatibility and the classic editor? Or the classic block in bigger projects?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah. So, one of the things that&#8217;s fun about Gutenberg is there&#8217;s actually experiments you can turn on and off. And so right now, from what I&#8217;m seeing, is there&#8217;s an experiment for TinyMCE removal, basically to help with compatibility with the classic editor plugin, and other plugins that disable the block editor. So, previously an experiment was introduced to help with TinyMCE removal, and so they&#8217;re just trying to polish this to make sure that there aren&#8217;t any regressions or just weird edge cases, and make sure that it&#8217;s using the same filter for classic editor plugin is using.</p>\n\n\n\n<p>So, it&#8217;s not for a lot of folks who are, Gutenberg change log, who are Gutenberg forward, but I think it is important to consider when we think about broader adoption and folks still using the classic editor, work and thought is still put in there. I know sometimes that feedback bubbles up, but there are efforts underway to ensure that people who do want to disable it, it still works. But yeah, I would encourage folks to also just use blocks. But yeah, I would call this a maintenance task, something that is really to just plug in interoperability and make sure things still work as expected. And so, it&#8217;s something that might be not as glamorous and shiny, but it&#8217;s still important work to do as part of the wider WordPress ecosystem.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And definitely, because there is this backwards compatibility promise for WordPress, and not only for the classic editor, but also for the classic theme. So, keeping that in mind, when you move forward in a different direction that people are still using the current stuff quite extensively and successfully, so they&#8217;re not impaired by any changes that are done. But sometimes these things are strategic and need to have a broader attention span on it and just not that one single feature. Excellent. So, I&#8217;m really glad that there is somebody on it. Yeah.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Documentation</strong></h3>\n\n\n\n<p>The next thing is mostly just to say that the documentation has been updated for the layout architecture after some of the APIs were stabilized. So, they are now showing up in the documentation and they&#8217;re not labeled as private or as experimental. So, that is definitely also a good thing, because a lot of people are a little bit hesitant to use experimental APIs or features.</p>\n\n\n\n<p>So, every time you can stabilize them and update the documentation so people know about it, is a good thing, it&#8217;s a good day. What else do we find? Oh yeah, there is an interactive template for talking about the Interactivity API.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Tools</strong></h3>\n\n\n\n<p>So, we have this scaffolding tool called Create Block, which speeds up your block development quite a bit when you start out with a new one or with putting additional blocks into a plugin. And now, there is also a template to use the Interactivity API on the next block that you are trying to build, that you&#8217;re working on, so you don&#8217;t have to include all the Interactivity stuff, for lack of a better technical term. And hook it up to all your other files, so there&#8217;s a template there. And it&#8217;s available now with a command line command, so that is certainly something for those people that want to dive into the Interactivity API.&nbsp;</p>\n\n\n\n<p><em>Anne McCarthy</em>: And when we make stuff like that easier, it&#8217;s so exciting, so great to call out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah, I think the great block scaffolding tool actually has not gotten enough exposure into the developers, because it was so late when it came out, people tried to build blocks and then gave up quite a bit. But now, every course, every tutorial that comes out of WordPress education or for the developer block uses a great block scaffolding. We hope to get more people building blocks.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So, I think we are through with the change log, that&#8217;s what we wanted to point out for 16.3.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p>So, in active development, I think everybody, we talked about, just briefly about the phase three collaboration phase and all the posts that are there, we didn&#8217;t talk too much about it because WordPress 6.3 is such a big thing in front of us, the collaboration, we don&#8217;t know yet what&#8217;s going to be, but everyone&#8217;s excited, I think about the admin changes as well as the media library. And then, of course, the real time collaboration and the async collaboration, there&#8217;s a lot to come out. So, what are the next steps that we are going to see when people say, okay, some of us are still working on the Polish and UI changes for the site editor, and some of us are going to start and move over to the collaboration?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, I will say, I don&#8217;t anticipate to see any sort of real time collaboration added into 6.4. I think it&#8217;s such a short release cycle, so I just want to put that out there. I&#8217;m not seeing headwinds about that or momentum in that direction. But I do think that&#8217;ll give us lots of time to experiment, and I know Riad posted on Make Core about the realtime architecture, which is totally worth reading. And there&#8217;s also a GitHub issue, of course, it is a GitHub issue. But right now, the feedback that I&#8217;ve gotten and questions that I&#8217;ve gotten, since I run basically the phase two outreach program, the full site outreach program is, it&#8217;s, what outreach are we doing? What&#8217;s going to happen with that? Are you going to run one for that? There&#8217;s a lot of questions bubbling up, of what&#8217;s next.</p>\n\n\n\n<p>And right now, I will say, the focus remains on 6.3, but I would expect to see a lot of experimentation, a lot of stuff starting up. I have done some outreach to plugin authors, I&#8217;ve done related functionality like that. I&#8217;ve started talking to folks in a larger to medium to small publishing space and agencies and all that sort of stuff. But I encourage folks to stay tuned and as soon as something is ready, I planned, and I&#8217;m sure you planned, to shout it from the rooftops, try and get folks involved and figure out exactly how best to organize stuff. Because I think that is a big question is, these are such related but yet disparate initiatives, and I don&#8217;t think there&#8217;s necessarily an overarching, here is the next thing we&#8217;re doing. I think some folks, some individual contributors, are just kind of trying to explore and pave the path for now and see what we can learn, ahead of a more collective push, once 6.3 is out the door.</p>\n\n\n\n<p>But yeah, I expect things to be more experimental in the Gutenberg plugin, by the time 6.4 is released. And then 6.5 is when I am more anxious about what are we going to have in place and how can people help test. And so, right now, I encourage folks to comment on the post that Matias wrote, share your feedback, share your experiences. Are you a writer? Are you a journalist who&#8217;s had to work in collaborative situations? Talk about it, write your comments, what do you want to see? What do you like about other tools that have those kinds of features in place? What workflows does your team have?</p>\n\n\n\n<p>Yeah, I think there&#8217;s a plugin author who commented recently on a workflows post, after we had exchanged some emails, who works on a calendar. So, you have a calendar post coming up and you have workflows related to that. And he took the time to very kindly share his feedback. So, anything you can do there is super helpful, whether it&#8217;s your plugin or you&#8217;re a writer or you&#8217;re an organizational leader who has to manage this kind of stuff.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s going to be real interesting. So, any feedback is really helpful in that. I just wanted to go back to what you said, okay, there&#8217;s not going to be a whole lot in 6.4 for phase three. I know there&#8217;s also quite a few things that are residual from phase two, contributors are aiming to get the funds API and the fund library into core, together with the typography management system. We talked about the Interactivity API, there&#8217;s certainly some front fund hydration kind of tools. We&#8217;re still waiting for the table of content block to be stabilized, and the time to read block, is something that is definitely on the list. And I&#8217;m really excited to see what&#8217;s coming as a default theme for 2024. And of course, all the publishing that goes into phase two interfaces and workflows for the site editor. Yeah, the default theme. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: There&#8217;s so much already slated for 6.4.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And then your central…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Provisions and templates and template parts, yeah, we could rattle off a bunch of stuff, let&#8217;s leave it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And we already know there&#8217;s stuff in there, so Beta 1 is September 26th, that&#8217;s just eight weeks away. And that&#8217;s kind of interesting to see how short of a cycle we are going to have, but we won&#8217;t hit US big holidays, like Thanksgiving, it will be out before Thanksgiving, it will be out before Christmas, and nobody goes into a Christmas year-end sale with a changed WordPress. So, I think it&#8217;s a good thing for the community, but it&#8217;s going to be hard to make it a splashy new feature kind of thing, when you only have eight weeks to develop. And it&#8217;s-</p>\n\n\n\n<p><em>Anne McCarthy</em>: It&#8217;s tight.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. But then Josepha started a wishlist post. We got quite a few comments there, and it&#8217;s still open until August 15th. She also made clear that it&#8217;s a wishlist, it&#8217;s not everything that&#8217;s going to be on there. It&#8217;s going to come into 6.4, but I think the jury is still out which part will be. If there is already a track ticket or a Gutenberg PR or issue, the chances might be going in, but a global, yeah, this is my wishlist kind of thing, it probably won&#8217;t get that attention. So, August 15th, that&#8217;s just before the community summit and WordCamp US. We will hopefully have, after WordCamp US, have a roadmap post, like you did for 6.3. Are you planning to doing something like that?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yes, I am. It is on my to-do list, I think for the week after, maybe August 14th or something like that, to start compiling stuff and figuring out what we can write up. Because yeah, that is an important thing to get out, especially with a shorter release cycle.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And it&#8217;s going to be interesting to see, it&#8217;s the underrepresented gender lead release. The last one was 5.6 and now we are 6.4, two years later, three years later. So, there are some awesome people on the release team, so I&#8217;m really looking forward to working with you and so many other, 40 on the direct release team or on the cohort, so it&#8217;s a great group of women/non-binary people working on the release.&nbsp;</p>\n\n\n\n<p>So, we are at the end of the show, Anne, it was wonderful to talk to you and you sharing all your knowledge&#8230; Not all your knowledge, we would be here another 10 hours.&nbsp;</p>\n\n\n\n<p><em>Anne McCarthy</em>: The highlights.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The highlights of the most immediate thoughts in the show. It was wonderful to have you, is there anything that you want our listeners to be aware of beyond what we talked about today, that we didn&#8217;t touch upon yet?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Oh, gosh. No, I don&#8217;t think so. I think the only thing that I&#8217;m noodling on is the next call for testing for the outreach program, and how we can get some feedback and get it going for 6.4, and just how 6.3 lands. So, stay tuned for that, if you&#8217;re not part of the FSE Outreach Program, it is still kicking, it&#8217;s still going over three years on.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s wonderful.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I really love that, how that turned out. And together, more people involved in testing themes, and no code and code people as well. So, is there a chance that you&#8217;re going to remove the experiment on that particular channel too?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Oh, gosh. I know, it&#8217;s so funny, I think it&#8217;s called FSE Outreach Experiment. Yeah, which is funny, because it&#8217;s like, how long can the experiment go for? We&#8217;re on very scientific terms right now, but yeah, no, we should remove it. I think I just referenced it everywhere, as FSE Outreach Experiment, so I&#8217;ve been nervous about getting rid of it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, okay. Yeah, I can see it.</p>\n\n\n\n<p><em>Anne McCarthy</em>: And FSE is also an old term&#8230; It&#8217;s just kind of a weird snapshot in time. But yeah, we&#8217;ll see.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right, well, it was wonderful to have you. If people want to get in touch with you, would be through the channel FSE Outreach Experiments?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, that&#8217;s probably the easiest. I&#8217;m @annezazu on Make Slack, and then I have a site, <a href=\"https://nomad.blog/\">Nomad.blog</a>. I&#8217;m on LinkedIn, but otherwise, not really typically on any social media. So not on X, or whatever they&#8217;re calling it, the kids are calling it these days. I don&#8217;t know how you even refer to that anymore.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s now a Boomers network, right? All right, well, thank you so much for being here, and we are going on holiday, the next recording will be August 25th and we will have Ellen Bauer.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Oh, amazing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230;lead for design, or co-lead, on the design release team for 6.4. And we&#8217;re going to talk about their work on block themes, and of course the next two Gutenberg releases, Gutenberg 16.4 and 16.5. So, stay tuned for the next one. And there&#8217;s always, dear listeners, the show notes will be published on gutenbergtimes.com/podcast, and if you have questions as suggestions or news you want us to cover, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. And that&#8217;s it for me, I wish everybody a great summer, and I will be back end of August. Take care.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Amazing. Thank you for having me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right, bye-bye.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Bye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jul 2023 20:28:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Gutenberg Times: Patterns, Block Styles and Slotfills—Weekend Edition #263\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25029\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://gutenbergtimes.com/patterns-block-styles-and-slotfills-weekend-edition-263/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14894:\"<p>Howdy, </p>\n\n\n\n<p>One more week, and I will start my Summer vacation. It&#8217;ll be a mixture between, pursuing neglected passing projects, giving family support, birthday celebrations and home improvement projects. My husband and I will join my in-laws  (MIL + SIL) on a river-cruise on the Danube and visit new places and revisit familiar places. </p>\n\n\n\n<p>The last touches on the WordPress 6.3 release are happening. If you haven&#8217;t yet, check out all the information that&#8217;s out there, and you find in the last two weekend editions. </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-3\">WordPress 6.3</a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-gutenberg-16-3\">Gutenberg 16.3 </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-word-press-6-3\">WordPress 6.3</h3>\n\n\n\n<p>On the WordPress News site, <strong>Anne McCarthy</strong> published <a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\"><strong>Synced Patterns: The Evolution of Reusable Blocks</strong></a>. You&#8217;ll learn everything there is to know about how the term &#8220;Synced patterns&#8221; is replacing the term &#8220;Reusable blocks&#8221;, and how this brings a unified creation experience for new pattern to your WordPress site with the new version. </p>\n\n\n\n<p>Many users have been applying reusable blocks to CTA, bios and compliance copy on their sites. Those will stay intact. Nothing changes here. The same mechanism you used to create reusable blocks, is also used to create synced patterns. It&#8217;s now also expanded to create standard patterns. A feature many site owners and designers have been waiting for. McCarthy and I also talked about this during our podcast recording. </p>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-text-color has-accent-color has-alpha-channel-opacity has-accent-background-color has-background is-style-wide gt-separator\" />\n\n\n\n<p><strong>Matt Medeiros,</strong> publisher of WPMinute, asked in his latest episode: <br /><a href=\"https://thewpminute.com/will-wordpress-6-3-be-the-best-ever/\"><strong>Will WordPress 6.3 be the best ever?</strong></a> &#8220;There are a lot of exciting features coming to WordPress 6.3 which will set the tone for the next few years of our favorite CMS.&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-accent-color has-alpha-channel-opacity has-accent-background-color has-background is-style-wide gt-separator\" />\n\n\n\n<p><strong>Jonathan Bossenger </strong>provides a recording of his <a href=\"https://wordpress.tv/2023/07/28/testing-wordpress-6-3-developer-edition/\"><strong>Testing WordPress 6.3 – Developer Edition</strong></a> session. You&#8217;ll learn how to install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"><em>WordPress Beta Tester plugin</em></a>, convert a local installation to 6.3 RC  for testing. Then use this setup to test it against a theme that is in active development, and then revert it back to WordPress 6.2.2. With WordPress 6.3 due on August 8, 2023, now would be a great time to help test the release candidate, as well as confirm that your plugins and themes are ready for the 6.3 release.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-gutenberg-16-3\">Gutenberg 16.3 </h3>\n\n\n\n<p><strong><a href=\"https://twitter.com/michaelburridge\">Michael Burridge</a></strong> led the latest Gutenberg release. It was mainly a maintenance release and comprised of a myriad of bug fixes for features slated for WordPress 6.3. Burridge highlighted in his release post <strong><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">What’s new in Gutenberg 16.3? (26 July)</a>&nbsp;</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/#focus-mode-editing-for-patterns\">‘Focus mode’ editing for patterns</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/#sticky-header-bar-on-patterns-page\">Sticky header bar on Patterns page</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/#rename-duplicate-and-delete-patterns\">Rename, duplicate, and delete patterns</a></li>\n</ul>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-text-color has-accent-color has-alpha-channel-opacity has-accent-background-color has-background is-style-wide gt-separator\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/\">Gutenberg Changelog #87 – Patterns, Gutenberg 16.3 and WordPress 6.3.</a> with Anne McCarthy as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n</div></div>\n\n\n\n<p><strong>Anne McCarthy</strong> and I talked about this release and, of course, also about WordPress 6.3 while recording the <strong>Gutenberg Changelog 87</strong>. It&#8217;s always a great joy to listen to Anne and take a deep dive into the Site editor with her. The episode is still at the editor, but will be available via your favorite podcast app over the weekend. My favorite Podcast app is <a href=\"https://pocketcasts.com/\">Pocket Casts</a> and I have been a paying subscriber for many years.</p>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the release as well in her article: <a href=\"https://wptavern.com/gutenberg-16-3-adds-new-tools-for-patterns\"><strong>Gutenberg 16.3 Adds New Tools for Patterns</strong></a>. &#8220;Most notably, custom user patterns now have a dropdown menu for renaming, duplicating and deleting them. Patterns and template parts that come with themes will only have the “duplicate” option available since they cannot be deleted or renamed.&#8221; she wrote. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jamie Marsland </strong>released a new video with a <a href=\"https://www.youtube.com/watch?v=ckq0Wfu2xvs\"><strong>tons of WordPress News that you probably missed</strong></a> with a demo of the <a href=\"https://gutenbergtimes.com/introducing-the-breadcrumbs-wordpress-block-plugin/\">Justin Tadlock&#8217;s Breadcrumbs Block</a>, the time to read block, and vertical text feature, and finally short appearances from Mike McAlister and Kevin Geary, with strong opinions on block themes specifically and Gutenberg as a whole. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>When users are new to WordPress, taxonomy is one of the concepts, that is harder to explain. <strong>Sarah Snow</strong> published a tutorial: <a href=\"https://learn.wordpress.org/tutorial/categories-vs-tags-whats-the-difference/\"><strong>Categories vs. Tags: What’s the difference?</strong></a> on the Learn.WordPress site. She shows you how to use them and that they are good for SEO juice and enhances content discovery for your readers. And  never have posts &#8220;uncategorized&#8221; again. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>Last week, <strong>Justin Tadlock</strong> published <a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">part 1</a> of his Beyond Block Styles series. In part 2 he walks you through how to build custom styles for the core Separator Block.  <a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-2-building-a-custom-style-for-the-separator-block/\"><strong>Beyond block styles, part 2: building a custom style for the Separator block</strong></a>. It&#8217;s a deep dive into the inner workings of creating block styles for core blocks. You would need to have a certain set-up in place to follow along, and Tadlock takes you by the hand on <a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">using the WordPress scripts package with themes</a>. I can hardly wait for the third part. I probably see first drafts next week. </p>\n\n\n\n<img />\n\n\n\n<p class=\"has-light-background-background-color has-background\">Oh, and while I have you: Are you a developer with a topic idea that you would like to share with the community? How about publishing it <strong>WordPress Developer Blog?</strong> Read the&nbsp;<a href=\"https://developer.wordpress.org/news/tips-and-guidelines-for-writers/\">tips and guidelines</a>&nbsp;and find out&nbsp;<a href=\"https://developer.wordpress.org/news/how-to-contribute/\">how you can contribute</a>. Our next monthly meeting will be on August 3rd, 2023 at 13:00 UTC in the WP Slack <a href=\"https://wordpress.slack.com/archives/C03RL47B3S8\">#core-dev-blog</a> channel. Or just DM me on Slack @bph and we&#8217;ll set up a talk. </p>\n\n\n\n<p>If you are a novice to working with NodeJS or npm, <strong>Jonathan Bossenger </strong>has a tutorial for you on Learn.WordPress: <a href=\"https://learn.wordpress.org/tutorial/installing-node-js-and-npm-for-local-wordpress-development/\"><strong>Installing Node.js and npm for local WordPress development</strong></a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>In his live coding session on twitch, <strong>Ryan Welcher</strong> covered &#8211;  it seems &#8211; his most favorite topic: <strong><a href=\"https://www.twitch.tv/videos/1883051136\">Using custom SlotFill to extend a codebase</a>,</strong> using is ever evolving Advanced Query Loop plugin and adding more settings to the plugin&#8217;s sidebar. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Michael Burridge</strong> and <strong>Justin Tadlock </strong>presented at this month&#8217;s <a href=\"https://wordpress.tv/2023/07/26/wordpress-developer-hours-styling-blocks-july-2023/\"><strong>Developer Hours about Styling Blocks.</strong></a> The recording is available on WordPress TV. The panel talked about CSS custom properties (also known as CSS variables). You learn how to leverage them in custom blocks to give users more control over the styling and presentation of their sites.</p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CCO</a>&nbsp;licensed&nbsp;<a href=\"https://wordpress.org/photos/photo/382642d6b2/\">photo</a>&nbsp;by&nbsp;<a href=\"https://wordpress.org/photos/author/lanche86/\">lanche86</a>&nbsp;from the&nbsp;<a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jul 2023 09:34:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: Ninja Forms Version 3.6.26 Patches Multiple High Severity Security Vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147292\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/ninja-forms-version-3-6-26-patches-multiple-high-severity-security-vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1893:\"<p>If you use the <a href=\"https://wordpress.org/plugins/ninja-forms\">Ninja Forms</a> plugin and your sites aren&#8217;t set to get automatic plugin updates, add a round of updates to your weekend plans. Patchstack is <a href=\"https://patchstack.com/articles/multiple-high-severity-vulnerabilities-in-ninja-forms-plugin/\">reporting multiple high severity security vulnerabilities</a> in the plugin, including the following:</p>\n\n\n\n<ul>\n<li>a POST-based reflected XSS (7.6 CVSS 3.1 score)</li>\n\n\n\n<li>a broken access control on form submissions export feature that allows Subscriber and Contributor role users to export all of the Ninja Forms submissions on a WordPress site (7.6 CVSS 3.1 score)</li>\n</ul>\n\n\n\n<p>Patchstack researchers discovered the vulnerabilities on June 22, 2023, and Ninja Forms patched them on July 4, 2023. The security advisory was publicly released on July 27, 2023. </p>\n\n\n\n<p>The plugin&#8217;s changelog for version 3.6.26 transparently identifies the security fixes included in the release:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em>Security Enhancements:</em><br />* Prevent unauthorized download of submission<br />* Prevent scripts in dashboard field labels; responsibly reported by Sayandeep Dutta<br />* Prevent front-facing label scripts; responsibly reported by Jonathon Zamora &amp; WordPress.org<br />* Prevent excess extra data through automated form submission<br />* Prevent override access where not permitted</p>\n</blockquote>\n\n\n\n<p>Ninja Forms is used on more than 800,000 WordPress sites. The majority of the plugin&#8217;s users are on version 3.6.x (73.6%) but WordPress.org doesn&#8217;t offer a more detailed breakdown of minor versions, so it&#8217;s not clear how many are still vulnerable. Ninja Forms users are recommended to patch their sites immediately. At this time, the vulnerabilities are not known to have been exploited.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Jul 2023 22:11:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WPTavern: WordPress Launches Slack/Matrix Bridge\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147271\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wptavern.com/wordpress-launches-slack-matrix-bridge\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3144:\"<p>WordPress meta contributors have just logged an important milestone in their efforts to <a href=\"https://wptavern.com/wordpress-project-to-evaluate-replacing-slack-with-matrix-open-source-chat\">explore replacing Slack communication with Matrix</a>, an open source federated chat system. The team hosted a meeting on the Meta Slack channel and the corresponding #meta:community.wordpress.org Matrix room simultaneously, enabled by the project&#8217;s <a href=\"https://make.wordpress.org/meta/2023/07/20/matrix-chat-summary-july-20-2023/\">new Slack/Matrix bridge</a>.</p>\n\n\n\n<p>The bridge allows users to follow the chat and participate from either Matrix or Slack, with messages showing up in real-time. It&#8217;s a tool that will make the transition easier as the WordPress project moves towards replacing Slack. The team is still in the process of importing the history for channels but the bridges are already in place for all public Slack channels/Matrix rooms. </p>\n\n\n\n<p>DM&#8217;s do not work over the bridge, although they work between Matrix users. The bridge doesn&#8217;t have access to anything that is private, and the historic data import into Matrix will only apply to public Slack channels. DMs and private channel history will not be ported over.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1213\" height=\"996\" />Meta contributor meeting inside Chatrix instance with room switcher disabled \n\n\n\n<p>The Matrix team has created a Gutenberg block that embeds a Matrix client called <a href=\"https://wordpress.org/plugins/chatrix/\">Chatrix</a>, which can be added to any WordPress page/post or P2 blog, as shown in the screenshot above. This example can be accessed at <a href=\"https://make.wordpress.org/meta/chat/\">https://make.wordpress.org/meta/chat/</a>. WordPress.org users can sign in with SSO inside the block and authorize their accounts to connect:</p>\n\n\n\n<img width=\"465\" height=\"500\" />\n\n\n\n<p>Now that the Matrix server is live at <a rel=\"noreferrer noopener\" href=\"https://community.wordpress.org/\" target=\"_blank\">community.wordpress.org</a>, WordPress users who want to attend team meetings or join rooms via Matrix can now do so using their choice of Matrix clients that support SSO. Logging in uses the same credentials as the WordPress.org account.</p>\n\n\n\n<p>&#8220;Compared to Slack this means a vastly simplified onboarding process,&#8221; Automattic-sponsored contributor Alex Kirk said. &#8220;Instead of waiting for an e-mail arriving at a special e-mail address, you set the server in your Matrix client to <code>community.wordpress.org</code> and click &#8216;Login with WordPress.org&#8217; (the name of that button might vary by client).&#8221;</p>\n\n\n\n<p>As the channels&#8217; history gets migrated over, Kirk said WordPress users will be automatically invited to rooms on Matrix that they have already joined from the Slack side. The team is planning to make more wide-scale public announcements after the Slack/Matrix bridge has demonstrated that it is running stable.</p>\n\n\n\n<p><a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https://app.slack.com/services/B05A8FX9LBD\"></a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Jul 2023 21:31:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Ottawa Can Bring It\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=92586\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2023/07/ottawa-can-bring-it/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:470:\"<p>Ottawa reminds me a lot of Houston. A city that is a microcosm of Canada&#8217;s diversity and vibrance.</p>\n\n\n\n<p>When you visit Ottawa, I&#8217;d recommend checking out <a href=\"https://aiana.ca/\">Aiana Restaurant Collective</a> (powered by WordPress, natch!) and <a href=\"https://www.stolengoodscocktailbar.com/\">Stolen Goods Cocktail Bar</a> to see craftspeople operating at the top of their game. <a href=\"https://dineriviera.com/\">Riviera</a> was also nice.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Jul 2023 02:52:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: ClassicPress Community Considers Re-forking WooCommerce for Classic Commerce v2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/classicpress-community-considers-re-forking-woocommerce-for-classic-commerce-v2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4802:\"<p><a href=\"https://www.classicpress.net/\">ClassicPress</a>, the fork that has been keeping WordPress 4.9 on life support for those who don&#8217;t want to use the block editor, will soon be moving into version 2.0 after the community <a href=\"https://wptavern.com/classicpress-community-votes-to-re-fork-wordpress\">voted to re-fork a newer version of WordPress</a> (6.x) to keep moving forward. <a href=\"https://www.classicpress.net/classicpress-v1-6-0-is-out/\">Version 1.6.0</a> was released a few weeks ago as the last minor release before version 2.0.</p>\n\n\n\n<p>ClassicPress contributors are <a href=\"https://forums.classicpress.net/t/classiccommerce-v2/4860\">discussing the future of Classic Commerce</a>, which is a <a href=\"https://classiccommerce.cc/\">fork of WooCommerce 3.5.3</a> created to provide a reliable e-commerce solution for ClassicPress users. The community is now bracing for the inevitable compatibility issues introduced by version 2.0 that will require a massive undertaking to resolve. </p>\n\n\n\n<p>In a forum thread seeking community input, @shimmy, an IT solutions business owner with an interest in supporting a long term e-commerce solution, proposed the following options for Classic Commerce&#8217;s future: </p>\n\n\n\n<ul>\n<li>Re-Fork Woo-Current</li>\n\n\n\n<li>Re-Fork Woo-Previous</li>\n\n\n\n<li>Fork a different eCommerce solution</li>\n\n\n\n<li>Migrate CCv1 to current</li>\n\n\n\n<li>Complete Rewrite</li>\n</ul>\n\n\n\n<p>&#8220;We can talk about re-forking, using something that works or asking ourselves: are we ready to really fork and support it on our own developing it in a way it works in ClassicPress or do we fork it and continue to patch it every time it doesn’t work because blocks or just keep it frozen?&#8221; Elisabetta Carrara said.</p>\n\n\n\n<p>After some discussion multiple participants in the conversation were in agreement that forking the latest version of WooCommerce to make it work with ClassicPress is not a viable option.</p>\n\n\n\n<p>ClassicPress director Viktor Nagornyy suggested exploring a refork similar to the method used for ClassicPress 2.0.</p>\n\n\n\n<p>&#8220;With CP v2.0, we didn’t take WP v6.2 and rip out blocks, FSE, and React,&#8221; he said. &#8220;<a href=\"https://forums.classicpress.net/u/mattyrob\">@MattyRob</a> merged <code>develop</code> branch with CP v1, and worked his way through all the files to resolve merge conflicts. That was a lot of work, and he did a great job. WooCommerce and Classic Commerce are plugins, so I assume they have fewer files than WP/CP core.</p>\n\n\n\n<p>&#8220;This type of &#8216;merge-fork&#8217; could be a viable option for CC to save time and effort.&#8221; </p>\n\n\n\n<p>@shimmy, who would be leading this effort, said he is leaning toward this approach.</p>\n\n\n\n<p>&#8220;I think this provides a more natural upgrade path and to some degree backwards compatibility,&#8221; he said. &#8220;At some point in the course of merge-fork WC plugins will no longer be compatible with CC; which is fine because I think that CC should have it’s own plugin &#8216;bazaar.&#8217; This ensures compatibility with CC; if you need a feature then it should be a filtered result with what you already have in place.&#8221;</p>\n\n\n\n<p>Nagornyy also encouraged a nascent plugin ecosystem to grow up around these forks to provide additional features. Although the WooCommerce plugin ecosystem has thousands of options for extending stores, they are not guaranteed to be compatible with forks built on older versions of WordPress and WooCommerce.</p>\n\n\n\n<p>&#8220;While the core CC is free, I encourage plugin developers to consider developing paid plugins for CC to ensure they get paid for their time and effort,&#8221;  Nagornyy said. &#8220;It only strengthens CP and CC knowing premium, supported plugins are available. For e-commerce, the two profitable (and critically important) categories of plugins are payment gateways and shipping integrations.&#8221;</p>\n\n\n\n<p>With the major <a href=\"https://wptavern.com/wordpress-plans-ambitious-admin-ui-revamp-with-design-system-galvanizing-broad-support-from-the-developer-community\">changes coming to the WordPress admin in Phase 3</a> of the Gutenberg project, maintaining these forks will continue to be an uphill slog, as fewer plugins from the wider ecosystem will remain compatible with ClassicPress. </p>\n\n\n\n<p>Maintaining payment gateways and shipping integrations for compatibility with these forks is also going to be challenging, as this discussion indicates that the community doesn&#8217;t have many experienced e-commerce developers who are eager to step up and donate their time to this project.  If Classic Commerce cannot deliver on the ambitious &#8216;merge-fork&#8217; option, users may need to look towards integrating external e-commerce solutions. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 22:16:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"Post Status: WordPress 6.3 RC2 • Synced Patterns • Internationalization • Gutenberg Phase 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=150017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/wordpress-6-3-rc2-synced-patterns-internationalization-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25140:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 25, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">We&#8217;re under two weeks away from WordPress 6.3 release. Have you started testing? <br /><br />Big changes are envisioned for the Media Library, Admin Dashboard, and more. You have an opportunity NOW to share ideas. What considerations do we need to account for? Read the Phase 3 post from Matías and share your feedback in the comments. <br /><br />No longer will you find Reusable Blocks. In WordPress 6.3, you&#8217;ll now find Synched Patterns. Read on to learn why the name has been changed. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fe_gitMerge kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Reusable Blocks, Phase 3, i18N</h2><p class=\"kt-blocks-info-box-text\"><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a><br /><br />3&#x20e3; <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Gutenberg Phase 3</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f310.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">I18N Performance Analysis</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f501.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">WordPress 6.3 Live Product Demo – Highlights &amp; Recording</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-22\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-27\">\n<div class=\"wp-block-column is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-25\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-july-12-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/new-handbook-page-for-wordcamp-organizers-wordcamp-speaker-selection-for-content-and-diversity/\">New handbook page for WordCamp Organizers: WordCamp Speaker Selection (for content AND diversity)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/12/summary-of-the-q2-community-team-role-updates/\">Summary of the Q2 Community Team Role Updates</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/a-week-in-core-july-24-2023/\">A Week in Core – July 24, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">What’s new in Gutenberg 16.3? (26 July)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">I18N Performance Analysis</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">Beyond block styles, part 1: using the WordPress scripts package with themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/make-your-sites-typography-make-a-statement/\">Make your site’s typography make a statement</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/whats-new-for-developers-july-2023/\">What’s new for developers? (July 2023)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/how-to-modify-theme-json-data-using-server-side-filters/\">How to modify theme.json data using server-side filters</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/core-editor-chat-summary-26th-july-2023/\">Core Editor chat summary: 26th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/dev-chat-agenda-july-26-2023/\">Dev Chat agenda, July 26, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/07/24/online-monthly-docs-team-contributor-day-july-25-2023/\">Online monthly Docs Team Contributor Day July 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/07/18/call-for-volunteers-to-help-with-6-3-end-user-documentation/\">Call for volunteers to help with 6.3 end-user documentation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/documentation-team-update-july-24-2023/\">Documentation Team Update – July 24, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/hosting-team-meeting-agenda-2023-07-26/\">Hosting Team meeting agenda 2023-07-26</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/07/20/matrix-chat-summary-july-20-2023/\">Matrix chat Summary – July 20, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/26/mobile-team-update-july-25th/\">Mobile Team Update – July 25th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/25/community-meeting-recap-2023-07-25/\">Community Meeting Recap (2023-07-25)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/24/last-week-openverse-2023-07-17-2023-07-24/\">A week in Openverse: 2023-07-17 – 2023-07-24</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/performance-chat-summary-25-july-2023/\">Performance Chat Summary: 25 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">Tackling team challenges together</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/plugin-review-team-24-jul-2023/\">Plugin Review Team: 24 Jul 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/26/agenda-weekly-polyglots-chat-july-26-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – July 26, 2023 (07:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/07/wp-contributor-mentorship-program-support-team-onboarding-meeting/\">WP Contributor Mentorship Program: Support Team Onboarding Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/07/agenda-for-july-27th-support-meeting-2/\">Agenda for July 27th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/27/sustainability-chat-agenda-july-28-2023/\">Sustainability Chat Agenda, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/test-team-update-24-july-2023/\">Test Team Update: 24 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/07/26/themes-team-meeting-notes-july-25-2023/\">Themes Team Meeting Notes – July 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/25/themes-team-update-july-25-2023/\">Themes team update July 25, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/07/26/training-team-meeting-recap-25th-july-2023/\">Training Team Meeting Recap – 25th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/25/call-for-volunteers-to-help-with-6-3-learn-wordpress-updates/\">Call for Volunteers to help with 6.3 Learn WordPress updates</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/improving-website-performance-with-caching/\">Improving website performance with caching</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/installing-node-js-and-npm-for-local-wordpress-development/\">Installing Node.js and npm for local WordPress development</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-exploring-some-of-the-new-6-3-wordpress-features\">APAC: Exploring some of the new 6.3 WordPress features</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=exploring-some-of-the-new-6-3-wordpress-features\">Exploring some of the new 6.3 WordPress features</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=onboarding-to-test-team\">Onboarding to Test Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=testing-wordpress-6-3-developer-edition\">Testing WordPress 6.3 – Developer edition</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-3\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-2\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=mentorship-program-introduction-to-the-wordpress-open-source-project\">Mentorship Program: Introduction to the WordPress Open Source Project</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-4\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-3\">What is the Domain Name System?</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordCamp Central</h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-malaysia-2023-is-looking-for-speakers-and-sponsors/\">WordCamp Malaysia 2023 is Looking for Speakers and Sponsors</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-masaka-2023-celebrating-inclusion-diversity-and-innovation-with-wordpress-in-ugandas-pearl-of-africa/\">WordCamp Masaka 2023: Celebrating Inclusion, Diversity, and Innovation with WordPress in Uganda’s Pearl of Africa!</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 22:03:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WordPress.org blog: Synced Patterns: The Evolution of Reusable Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15541\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4355:\"<p>Synced patterns are replacing Reusable blocks, offering a unified creation experience for new pattern functionality coming to WordPress 6.3. Patterns, first introduced in WordPress 5.5, are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. With WordPress 6.3, set to be released on August 8th, you will be able to arrange blocks in unlimited ways and save them as patterns for use throughout your site, directly within the editing experience. You can also specify whether to sync your patterns, so that one change applies to all parts of your site, or to keep them unsynced, so you can customize each instance.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Create your own patterns</h2>\n\n\n\n<p>The ability to create your own patterns, on top of using the ones bundled into each WordPress release, opens up a world of possibilities. Need to repeat the same contact information across your site and keep it up to date? Create a synced pattern with all the details, and say goodbye to repeating yourself, with the ability to quickly insert the synced pattern wherever you need it. If you find yourself creating various banners for your site and want them to have the same layout with unique content, creating an unsynced pattern speeds up your workflow and ensures a level of consistency in approach. While themes and plugins have been able to offer patterns to users and <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/curating-the-editor-experience/#utilizing-patterns\">curate the experience</a>, this update allows agencies and site builders to do the same for their clients, directly in the site building process.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Dig into the details</h2>\n\n\n\n<p>Any previously made Reusable blocks will continue to function as they do now, just under the new Synced pattern name. To help adjust to these changes, a few contextual notices will be placed throughout the interface. Specifically, the menu item in the creation flow will show as “Create pattern/reusable block” until the prompt describing the switch is dismissed in one of the various locations, including the naming and syncing modal:&nbsp;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>For folks using block themes, all patterns will be listed alongside template parts in the Site Editor &gt; Patterns section, where you can enter a focused editing mode to make changes. For Classic themes, the prior reusable block management page will now house patterns in a list, similar to the Posts &gt; All Posts view.</p>\n\n\n\n<img width=\"1024\" height=\"590\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1024%2C590&ssl=1\" alt=\"Patterns section of the WordPress Site Editor with My Patterns selected\" class=\"wp-image-15569\" />\n\n\n\n<p>For a complete overview of patterns on your site, all patterns provided by themes and plugins will be shown in this section but without the option to edit directly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Go further</h2>\n\n\n\n<p>With the ability to create your own patterns baked into the creation experience, remember that you can copy the patterns available in the <a href=\"https://wordpress.org/patterns/\">Pattern Directory</a> and <a href=\"https://wordpress.org/patterns/about/\">contribute back</a>, an excellent way to democratize design for every WordPress user and the web.</p>\n\n\n\n<p><em>For more exciting features coming to patterns in WordPress 6.3, </em><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\"><em>read on in the Advancing the Power of Patterns post</em></a><em>. Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>Chloé Bringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/jpantani/\"><em>Jonathan Pantani</em></a><em>, </em><a href=\"https://profiles.wordpress.org/chanthaboune/\"><em>Josepha</em></a><em>, </em><a href=\"https://profiles.wordpress.org/kristastevens/\"><em>Krista Stevens</em></a><em>, </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>Nicholas Garofalo</em></a><em>, <a href=\"https://profiles.wordpress.org/provenself/\">Peter Rubin</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 14:45:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Do The Woo Community: Building Your Agency Stack with Judd Dunagan and Carlos Caneja\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75733\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://dothewoo.io/building-your-agency-stack-with-judd-dunagan-and-carlos-caneja/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:445:\"<p>Judd from Bright Vessel and Carlos from Britecode share insights and experience in building their WooCommerce Agency stack.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/building-your-agency-stack-with-judd-dunagan-and-carlos-caneja/\">Building Your Agency Stack with Judd Dunagan and Carlos Caneja</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 08:44:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WPTavern: Gutenberg 16.3 Adds New Tools for Patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147209\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wptavern.com/gutenberg-16-3-adds-new-tools-for-patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2249:\"<p><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">Gutenberg 16.3</a> was released today as a maintenance release but includes several new tools that make pattern management smoother and easier for users. Most notably, custom user patterns now have a dropdown menu for renaming, duplicating and deleting them. Patterns and template parts that come with themes will only have the &#8220;duplicate&#8221; option available since they cannot be deleted or renamed. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nvideo credit: <a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">Gutenberg 16.3 release post</a>\n\n\n\n<p>Gutenberg 16.3 adds a sticky header bar on the Patterns page. It also brings the &#8220;focus mode&#8221; to patterns, which is already available for template parts in the Site Editor but not available when editing patterns. Users may not notice but it provides more a consistent editing interface.</p>\n\n\n\n<p>Those who have been keenly following the evolution of the Patterns page will notice that the &#8220;Theme patterns&#8221; heading has been <a href=\"https://github.com/WordPress/gutenberg/pull/52570\">removed</a> and the pattern categories rearranged. Theme and plugin patterns now appear above template parts.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1270\" height=\"1158\" />image credit: <a href=\"https://github.com/WordPress/gutenberg/pull/52570\">Gutenberg PR #52570</a>\n\n\n\n<p>The icon for synced patterns isn&#8217;t self evident and some users may need more context. <a href=\"https://github.com/WordPress/gutenberg/pull/52458\">A new tooltip</a> identifies synced patterns as those for which edits will apply anywhere the pattern is used.</p>\n\n\n\n<p>Gutenberg 16.3 includes more than two dozen pattern interface-related fixes, among other editor bug fixes. If you are using and managing patterns frequently, having the Gutenberg plugin installed will enable a better experience with this interface until these updates make their way into core WordPress. Check out the <a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">release post</a> for a full list of all the changes and fixes in 16.3.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 02:49:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WordPress 6.3 RC2 Released, Watch the Live Product Demo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147173\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/wordpress-6-3-rc2-released-watch-the-live-product-demo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4088:\"<p><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 RC2</a> has been released and is ready for community testing. Since RC1 landed a week ago, 15 changes have come in from the <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Editor</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=07%2F18%2F2023..07%2F25%2F2023&milestone=6.3&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Trac</a>, including bug fixes for footnotes, internationalization fixes, a missing command for opening the distraction free in the Site Editor, and a few other issues. </p>\n\n\n\n<p>This release also brings in <a href=\"https://core.trac.wordpress.org/ticket/58067\">work completing the About page</a> and adds a &#8220;Get Involved&#8221; section, closing a 10-year old <a href=\"https://core.trac.wordpress.org/ticket/23348\">ticket</a> that suggested adding a &#8220;Contribute&#8221; tab to the About page.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1367\" height=\"2560\" />\n\n\n\n<p>The new Get Involved page features both code-based and no-code contribution opportunities with a link to WordPress&#8217; contributor teams.</p>\n\n\n\n<p>The video of the <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">WordPress 6.3 Live Product Demo</a> has been published so anyone who was not able to attend can get a preview of what is coming in the next release. Automattic-sponsored contributors <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> and <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> hosted the demo, showing users how to use the new command palette to zip around the editor and manage settings views. They also guide viewers through browsing and editing pages within the Site Editor, managing synced patterns (formerly called Reusable Blocks), and showcased various new blocks and design tools.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Check out the <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">highlights post</a> for all the links to features referenced in the demo and the Q&amp;A portion of the broadcast.</p>\n\n\n\n<p>For those interested in performance improvements coming in 6.3, an upcoming <a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">hallway hangout</a> is happening tomorrow <strong><strong><a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20230727T1500\"><abbr title=\"2023-07-27T15:00:00+00:00\">Thursday, July 27, 2023 at 11:00 AM EDT</abbr></a>. </strong></strong>Participants can check the <a href=\"https://wordpress.slack.com/archives/C02KGN5K076\">#core-performance</a> Slack channel for the Zoom link before the event. Team leads will cover highlights from the 170+ performance improvements included in 6.3 and will discuss future improvements for 6.4. </p>\n\n\n\n<p>WordPress&#8217; Training team is <a href=\"https://make.wordpress.org/training/2023/07/25/call-for-volunteers-to-help-with-6-3-learn-wordpress-updates/\">calling for volunteers</a> to help with updating and revising existing Learn WordPress resources ahead of the 6.3 release. The team has created a <a href=\"https://github.com/WordPress/Learn/labels/6.3\">board</a> on their GitHub repository which highlights high priority tasks. </p>\n\n\n\n<p>WordPress 6.3 RC3 is expected to be released on August 1, and the general release is scheduled for August 8, less than two weeks away. There is still time to find and report some bugs. One easy way is to install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a local testing site or use a quick throwaway site from services like InstaWP or TasteWP. <a href=\"https://core.trac.wordpress.org/newticket\">Bugs can be reported on Trac</a> or via the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta section</a> of the support forums.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jul 2023 19:19:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: #85 – Giulia Laco on the Importance of Typography for Your Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=147116\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/podcast/85-giulia-laco-on-the-importance-of-typography-for-your-websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:51871:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case the importance of typography for your websites.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash Jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Giulia Laco. Giulia is a web designer and developer who has been working on the web since the mid 1990s. Her primary interests are web typography and font design. In addition to project development, she&#8217;s a consultant and a trainer, mostly working with CSS, web fonts and web typography.</p>\n\n\n\n<p>This is the last of our podcasts from WordCamp Europe, 2023. I spoke to Giulia in Athens because she had just finished her presentation entitled &#8220;typographic readability in theme design and development&#8221;.</p>\n\n\n\n<p>In this session, she explored how designers can assist with the readability of websites through careful consideration of the fonts they choose and why they choose them.</p>\n\n\n\n<p>It turns out there&#8217;s quite a lot to consider. And if you&#8217;ve not given this topic much thought in the past, you&#8217;ll perhaps learn something new. I certainly did.</p>\n\n\n\n<p>We begin the podcast talking through how, at the start of the web, we were making do with a limited range of tools to help us make typographic choices. There were no web fonts available, but that started to change around 2010. Now we have access to hundreds of fonts and need to be mindful that some fonts can pose readability challenges for some users of your website.</p>\n\n\n\n<p>Giulia talks about the fact that the manner in which we read has changed since the dawn of the internet. Many people now mostly consume small passages of text, which need to be considered in a different way to longer writing.</p>\n\n\n\n<p>Concentrating upon the letters in the Latin alphabet, we talk about the ways in which readers typically break up words into smaller units, and the fact that the way letters are shaped can make them easier to parse. There&#8217;s some technical language here, ligatures X-height, apertures, and more. Which tell us about the shaping and spacing of letters. Giulia explains the current state of research into how these characteristics of fonts can affect readability.</p>\n\n\n\n<p>We talk about whether or not there are fonts which are more readable than others. Is there a collection of fonts, which you can use and be confident that you&#8217;re going to make it easy for all users of your websites?</p>\n\n\n\n<p>Giulia talks about how designs need to consider the spaces into which the text is put. Most people have a proclivity for the order in which they view a page. And knowing about this path across the page can help your readers access the text.</p>\n\n\n\n<p>The width of the text is also important. You want people to be able to read from side to side without having to move their head. How does this work across different device sizes and what can be said about text, which runs right to left, or top to bottom?</p>\n\n\n\n<p>We round off the conversation with Giulia telling us where we can find out more, as well as some of the thought leaders in this space.</p>\n\n\n\n<p>It&#8217;s a fascinating conversation about a subject that often gets overlooked. Web designers, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Giulia Laco.</p>\n\n\n\n<p>I am joined on the podcast by Giulia Laco. Hello Giulia.</p>\n\n\n\n<p>[00:04:43] <strong>Giulia Laco:</strong> Hello.</p>\n\n\n\n<p>[00:04:43] <strong>Nathan Wrigley:</strong> It&#8217;s very nice to have you on. Giulia is joining me at WordCamp EU in Athens. It&#8217;s the last conversation that I&#8217;m recording, so very nice to have you on. You are going to be talking to us today about something that I genuinely didn&#8217;t know about.</p>\n\n\n\n<p>This was a really interesting topic to research from my point of view. You&#8217;re going to be talking to us a little bit about typography. That&#8217;s based upon a workshop that you did yesterday. How did it go?</p>\n\n\n\n<p>[00:05:12] <strong>Giulia Laco:</strong> I&#8217;m happy about that. I&#8217;m happy to hear that you are interested in typography as well.</p>\n\n\n\n<p>[00:05:17] <strong>Nathan Wrigley:</strong> Was it well attended? Did you get your information across? Did people engage with the topic?</p>\n\n\n\n<p>[00:05:22] <strong>Giulia Laco:</strong> I think so. I divided people in two groups, developers and designers. So to let them think about typography with the mentality of the others. So that was the point I was trying to have.</p>\n\n\n\n<p>[00:05:35] <strong>Nathan Wrigley:</strong> Well, the reason I wanted to talk to you was because when I was looking through the list of presentations and workshops, yours was really different, a topic that I genuinely hadn&#8217;t thought about in the way that you&#8217;ve made me think about it.</p>\n\n\n\n<p>Because whenever I think about typography, I am really just thinking about whether I like a font. So if I go to a website, I just make a quick judgment. Do I like that font? Do I not like that font? But there&#8217;s a lot more to it than that, which we&#8217;re going to get into. But can you just tell us why you&#8217;re interested in this? Do you have a history with working with type? Why are you so fascinated by typography?</p>\n\n\n\n<p>[00:06:17] <strong>Giulia Laco:</strong> Okay, well, maybe it&#8217;s because I&#8217;ve started making websites at the very beginning of the internet era. It was around, mid nineties. And we didn&#8217;t have the possibility to use web fonts of any kind on the web. We did what we could with very few tools. Whereas later on in 2009 or 10, we had this great possibility of using web fonts, and I started to get engaged with, with the typography. And that was the time when I was starting typography for the first time actually.</p>\n\n\n\n<p>[00:06:52] <strong>Nathan Wrigley:</strong> Are you interested in typography away from the internet? Are you interested in the way that type is presented in books and on paper?</p>\n\n\n\n<p>[00:07:00] <strong>Giulia Laco:</strong> Yes, everywhere. On menus as well.</p>\n\n\n\n<p>[00:07:03] <strong>Nathan Wrigley:</strong> Yeah, because when you actually turn your attention to typography, which is what I did after we booked this interview. Text is everywhere, and it&#8217;s really, really different wherever you look. So we are sitting in a room. There&#8217;s almost no text, but there&#8217;s a little bit of text behind you. It has a particular font.</p>\n\n\n\n<p>[00:07:22] <strong>Giulia Laco:</strong> Montserrat.</p>\n\n\n\n<p>[00:07:23] <strong>Nathan Wrigley:</strong> Montserrat probably, yeah. I&#8217;m looking at my computer. It has a font on it. I&#8217;ve just been downstairs, looked at a menu. It had three or four fonts on it. Wherever you look, there is text, and usually the typography has been thought about.</p>\n\n\n\n<p>But you were talking about typography from the point of view of how can be done better. How can be a problem for some people, and that I didn&#8217;t really realize. I knew that people would perhaps struggle to read text because it was too small, or there was a background color, which clashed with the color of the text. But I didn&#8217;t realize that the font itself could be a problem. So tell us how it can be a problem. How can some people struggle to read one font but not another?</p>\n\n\n\n<p>[00:08:08] <strong>Giulia Laco:</strong> Well, it&#8217;s a big question, because, there&#8217;s a lot of research about that, recent research on readability. Because very few people read a lot nowadays in each country. So a lot of countries are worried about that.</p>\n\n\n\n<p>So there are movements to let people read better by making some tools. And big companies like Adobe, Google are on this concern. They&#8217;re concerned about that. So they&#8217;re trying to study that subject. The Readability Consortium, a consortium from between these big companies and universities in America.</p>\n\n\n\n<p>And it&#8217;s working interdisciplinary. So with psychologists, typographers, graphic designers. And started to focus on what makes text legible. And what they are, as far as I know, they&#8217;re saying is that it&#8217;s different for everybody. So you test it.</p>\n\n\n\n<p>And so that&#8217;s why you need to make tools that help people adjust their texts when they read for long form reading, of course. Not for just a menu or, very few words you are going to read. And they&#8217;re trying to do those tools. And maybe it&#8217;s difficult for a user to know what they need.</p>\n\n\n\n<p>[00:09:30] <strong>Nathan Wrigley:</strong> Right.</p>\n\n\n\n<p>[00:09:30] <strong>Giulia Laco:</strong> So, they are working also with AI. Trying to have some patterns and, have some themes, let&#8217;s say. So that can adapt to very different kind of people. But they&#8217;re trying to reach that patterns by research, not by guessing. So that&#8217;s very intereting.</p>\n\n\n\n<p>[00:09:50] <strong>Nathan Wrigley:</strong> Yeah, really interesting. I mean, again, when I was researching this, it suddenly occurred to me that, I have children, they&#8217;re grown up largely now. But I remember when they came home from school, at the beginning, their homework was in child-friendly fonts. Let&#8217;s put it that way. Often it was something along the lines of comic sans something like that. And it didn&#8217;t occur to me at all at the time, I just thought, oh, well it&#8217;s a child-friendly font. It&#8217;s kind of round and it&#8217;s got, you know, there&#8217;s no hard edges.</p>\n\n\n\n<p>I just thought it&#8217;s just a pleasant thing to look at. But now that I&#8217;m thinking about it, it was probably an easier font for the child to begin to learn to read with. Because all of the letters were clear. There was no confusion between one letter and the other. You know, you couldn&#8217;t mistake the L for the I, for example. And I did wonder, you were saying that there&#8217;s less people reading than ever. If the typography is a, quotes, difficult font, it may be more difficult to begin learning to read. I don&#8217;t know if that&#8217;s something that you were trying to say there.</p>\n\n\n\n<p>[00:10:59] <strong>Giulia Laco:</strong> Well actually, when a child start reading has a very tough task. And helping that process is important. I remember seeing books in upper case letters only, it was meant to be simpler. But they started only to recognize only one kind of letters. In the Latin alphabet, we have upper case and lower case, and they&#8217;re very different because of their history.</p>\n\n\n\n<p>Uppercase letters comes from the engraved Latin letters. Whereas the small, lowercase, comes from calligraphy. So they&#8217;re very different origins,. And it&#8217;s not the same to learn lowercase a and a lowercase a. Recognizing them as the same letter, the same sound.</p>\n\n\n\n<p>And with sound is also difficult, especially in English, you have so much problem with sounds and letters.</p>\n\n\n\n<p>[00:11:57] <strong>Nathan Wrigley:</strong> Yeah. I think we have 44 sounds, but only 26 letters.</p>\n\n\n\n<p>[00:12:02] <strong>Giulia Laco:</strong> And the combination. When you use a letter and a sound, other languages are much more simpler on that respect.</p>\n\n\n\n<p>[00:12:09] <strong>Nathan Wrigley:</strong> Yeah again, remarkable. I&#8217;d never really given any thought to how different uppercase and lowercase are. But they don&#8217;t bear, in some cases they&#8217;re quite similar.</p>\n\n\n\n<p>[00:12:17] <strong>Giulia Laco:</strong> Yes.</p>\n\n\n\n<p>[00:12:18] <strong>Nathan Wrigley:</strong> So an l and a capital L, broadly the same. But something like an a, the capital letter A and the lowercase letter. They&#8217;re just utterly different, aren&#8217;t they? They&#8217;re really, really remarkably different. Oh, that&#8217;s fascinating. I hadn&#8217;t given any thought. So what makes text legible to a lot of people, or not legible to a lot of people? Are there any kind of guidelines around that?</p>\n\n\n\n<p>[00:12:41] <strong>Giulia Laco:</strong> Okay, I will distinguish between legibility and readability. Because, you have this distinction in English and it&#8217;s great. We don&#8217;t have it in Italian. I guess the legibility comes from lighting as we have for legibilita in Italian. And it&#8217;s something that has to do with decoding. So that&#8217;s something that has to do with the typeface.</p>\n\n\n\n<p>Whereas readability is something you want to read, you like to read something, you want to read. And not you&#8217;re just trying to decode things. So that&#8217;s a big difference, when you start to understand why a text is readable or not. I would say that trying to take a legible font means to have a font with certain characteristics.</p>\n\n\n\n<p>For example, it&#8217;s let&#8217;s say proved that a font with a higher X-height is more legible. I&#8217;m talking about running text, the body text for long reading experience. So X-height is basically the medium height of the lower case letters, based on the letter x, that&#8217;s why X-height, you see.</p>\n\n\n\n<p>And so for example, I don&#8217;t Helvetica has a higher X-height than Times New Roman, for example, if you compare it. And having a higher X-height is a typeface, be more readable.</p>\n\n\n\n<p>And another very important thing is with apertures. Apertures, how can I say, the white space inside the part of the letters that are open. Take a lowercase e in the lower part of the letter. You have this room. If it&#8217;s more closed, it&#8217;s less legible because it can be taken for an o for example, you see. So Helvetica, for example, is very well used, but it&#8217;s not legible as a body copy. Helvetica is wonderful for display type for titles, but not so well for body text.</p>\n\n\n\n<p>[00:14:42] <strong>Nathan Wrigley:</strong> So you are saying, so this X-height? So is typically the height of the letter x. So if I put an x next to the letter h, for example, it&#8217;s the height of the rounded bit of the letter h? </p>\n\n\n\n<p>[00:15:55] <strong>Giulia Laco:</strong> Yes, exactly.</p>\n\n\n\n<p>[00:14:57] <strong>Nathan Wrigley:</strong> Or it would be the height of the letter a? Or the rounded bit of the letter p? The more tall that bit is, the more legible it is for most people to read. I had no idea.</p>\n\n\n\n<p>[00:15:09] <strong>Giulia Laco:</strong> Well, it&#8217;s just one thing because, not only that, because it&#8217;s also how you set type. For example, if you have a large X-height, typeface and you set it with a very small space between the lines, the line height, the leading, they say in typography. You don&#8217;t take advantage of that highness, you see.</p>\n\n\n\n<p>[00:15:32] <strong>Nathan Wrigley:</strong> Okay. So if letters are squashed. If one line of letters is compressed, so line height.</p>\n\n\n\n<p>[00:15:37] <strong>Giulia Laco:</strong> Mm-hmm.</p>\n\n\n\n<p>[00:15:37] <strong>Nathan Wrigley:</strong> Is compressed up against another line of letters beneath it, that makes it more difficult to read because there&#8217;s just no room for the letters to breathe, There&#8217;s no gap. They&#8217;re all just squished together. Okay?</p>\n\n\n\n<p>[00:15:48] <strong>Giulia Laco:</strong> But you have to pay attention not to put too much line height. Otherwise you lose the next line when you jump from one line to the other, it&#8217;s too far and you can&#8217;t find it.</p>\n\n\n\n<p>[00:15:59] <strong>Nathan Wrigley:</strong> So this is the eyes ability to go from the end of one line and track, and immediately find the beginning the next line.</p>\n\n\n\n<p>[00:16:46] <strong>Giulia Laco:</strong> Yes exactlly.</p>\n\n\n\n<p>[00:16:47] <strong>Nathan Wrigley:</strong> I confess I have experienced that problem before, and I hadn&#8217;t noticed, until just now, that that was because of that. I&#8217;ve definitely had books that I&#8217;ve been reading where I&#8217;ve struggled to begin the next line, and sometimes repeated the line that I was supposed to be on. Or I&#8217;ve skipped a line and missed a line out and only halfway through thought, actually that doesn&#8217;t make any sense. Let me go back. I had no idea. But also you are saying that the amount of, what did you call it, the space?</p>\n\n\n\n<p>[00:16:30] <strong>Giulia Laco:</strong> Oh, typographers call it leading because it&#8217;s comes from lead, lead, lead, I don&#8217;t know, of the metal types. With metal types they used to put some space between the lines with some lead. So the lead bars.</p>\n\n\n\n<p>[00:16:45] <strong>Nathan Wrigley:</strong> Oh, okay. So they spaced them out with a physical object.</p>\n\n\n\n<p>[00:16:30] <strong>Giulia Laco:</strong> Yes, exactly.</p>\n\n\n\n<p>[00:16:45] <strong>Nathan Wrigley:</strong> And it was a bar of lead, and the wider the bar of lead, the more space. This is fascinating. But you also mentioned in the letter e for example, the lowercase e, forgive me if I misunderstood. So the bottom half of the letter e, there&#8217;s a gap, a little gap, and the amount of gap, if the gap is bigger.</p>\n\n\n\n<p>[00:17:07] <strong>Giulia Laco:</strong> That&#8217;s the aperture, yes.</p>\n\n\n\n<p>[00:17:08] <strong>Nathan Wrigley:</strong> The bigger the gap is, the more you are likely to be able to read it, typically?</p>\n\n\n\n<p>[00:17:13] <strong>Giulia Laco:</strong> Yes, because you&#8217;re likely to distinguish it from an o.</p>\n\n\n\n<p>[00:17:16] <strong>Nathan Wrigley:</strong> Of course.</p>\n\n\n\n<p>[00:17:17] <strong>Giulia Laco:</strong> You decode it easiest.</p>\n\n\n\n<p>[00:17:19] <strong>Nathan Wrigley:</strong> You keep mentioning Helvetica. Is that a font which has lots of problems? Is that why you mention it, because it&#8217;s full of things you can identify?</p>\n\n\n\n<p>[00:17:26] <strong>Giulia Laco:</strong> It&#8217;s very well known. That&#8217;s why I&#8217;m mentioning. And very much used. But it&#8217;s better to use it as a display type.</p>\n\n\n\n<p>[00:17:34] <strong>Nathan Wrigley:</strong> The only thing that I&#8217;ve ever had a problem reading, was the thing that I&#8217;ve just described where I have skipped a line or gone back and reread the other line. But I&#8217;m imagining that you&#8217;ve done this talk because there are problems which people experience, which I fortunately, don&#8217;t appear to have a problem with. What trips people up? If you were somebody that, I don&#8217;t know how to say this correctly. If you are somebody who struggles to read, what are the trip wires, if you know what I mean?</p>\n\n\n\n<p>What are the things in a font could be wrong that make you unable to read it? So you mentioned that the line height, you mentioned the X-height. Is there more to it than that?</p>\n\n\n\n<p>[00:18:14] <strong>Giulia Laco:</strong> Well, there might be a lot. One thing that I can think of are ambiguous forms of letters. Let&#8217;s take lowercase letters, p and q or b and d. So for these four letters in a sans serif font, for example, are usually with the same shape, just flipped or rotated. That&#8217;s said to be a problem with people that experience dyslexia. But it&#8217;s actually opinionated because we don&#8217;t know exactly how it works. Actually for everybody can be a problem to distinguish between similar shapes.</p>\n\n\n\n<p>For example, as you said before, a child who is starting to read, or to write as well, may experience the same problem. No matter if it&#8217;s, if there&#8217;s a problem of dyslexia or not. So if you are going to avoid these kind of things, you can pick a font, a serif font that generally has different letters, different forms. The four letters I mentioned, typically with small serfis in different parts of the letters so they can be distinguished, for sure.</p>\n\n\n\n<p>[00:19:27] <strong>Nathan Wrigley:</strong> Can you, I know it&#8217;s probably obvious to most people, but will you just tell people what a serif font is and what it isn&#8217;t? You know, if you&#8217;ve got a non serif font or serif font, what&#8217;s the difference?</p>\n\n\n\n<p>[00:19:39] <strong>Giulia Laco:</strong> Let&#8217;s take the example of Helvetica and Times New Roman. So maybe it&#8217;s easier for people to visualize the difference. Helvetica has straight lines, nothing at the termination of the strokes. Whereas Times New Roman has some small shapes that derive from the calligraphic or the, in that case, for the upper case, the engraving, the instrument that we use to engrave. And so they had this little [feet?] let&#8217;s say so, that distinguish the kind of font.</p>\n\n\n\n<p>And the font has a different mood, very different mood. And a lot of other characteristics. There are, well, history of typography is based on that more or less.</p>\n\n\n\n<p>[00:20:24] <strong>Nathan Wrigley:</strong> It always feels to me as if a font, a serif font, which has these, I think you use the word where the letter terminates. I&#8217;ve never really</p>\n\n\n\n<p>[00:20:31] <strong>Giulia Laco:</strong> thought about that. They always look as if they&#8217;re more, I don&#8217;t know, maybe in a legal document or something like that. They have this feeling of something more powerful or more important or something. It&#8217;s quirky that, isn&#8217;t it?</p>\n\n\n\n<p>I&#8217;m looking at a Google Doc where I&#8217;ve written my show notes and, I don&#8217;t see any that. I can&#8217;t tell you that either of those fonts are a serif font or a non serif font. I find them both equally easy to read. It doesn&#8217;t trip me up at all. But typically, is there a problem for some people with a serif font or a non serif font? Is there one, to catch everybody would it be better to not deploy a serif font or is there just no difference in people&#8217;s ability to cope with either?</p>\n\n\n\n<p>Each font is maybe very different. Most people at the first level, when they start talking about topography, they started to see this difference. But that&#8217;s not the main point. Maybe the main point in readability is the rhythm of letters. The rhythm where the white space and the black space, meaning when you have black text on white. They alternate each other.</p>\n\n\n\n<p>Try to figure out this word, minimum. You&#8217;ll have a lot of rhythm. Minimum in, written in lower case letters. You see? So, the rhythm is very, very different. And maybe that&#8217;s important in typography, in reading. And is very important for people who struggle with reading, because you don&#8217;t interrupt the rhythm. The rhythm helps reading.</p>\n\n\n\n<p>[00:22:03] <strong>Nathan Wrigley:</strong> It just sort of bounces along, doesn&#8217;t it? If you look at the word minimum, it genuinely has a, it&#8217;s almost like a little wave pattern going up and down, isn&#8217;t it? That&#8217;s fascinating. So what did you call it? Your ability to read it. There was a word you just said. Rhythm, rhythm. So words can have rhythm, and the more rhythm there is, the easier it is to read. So if a font provides rhythm, that&#8217;s a good thing.</p>\n\n\n\n<p>[00:22:24] <strong>Giulia Laco:</strong> I think so. But it depends also on the purpose. Long reading. I think that&#8217;s important. Otherwise it&#8217;s different. It&#8217;s totally different. I mean concepts with display types because they have a different purpose, you know, text and function. The titles have different purpose. They have to catch the attention. Whereas the long, the body text has to be read, so needs a different kind of attention.</p>\n\n\n\n<p>[00:22:53] <strong>Nathan Wrigley:</strong> Right. And are there any guidelines which kind of fonts catch the attention more, and which kind of fonts work better with the body content? You know, where you&#8217;re reading long paragraphs and so on? Does it matter or is there one kind of font that you would recommend in each case?</p>\n\n\n\n<p>[00:23:08] <strong>Giulia Laco:</strong> Generally, when you buy a font, you&#8217;ll have a font that is meant for body text and some other for display type. So if you rely on what the designer, the type designer, has done, you are safe. Otherwise you have to. try. But also if you go on a repository like Google fonts for example, you have this distinction among display types and other kind of types. So it&#8217;s quite a common mistake at the beginning to take display type and use it as a body text. And that&#8217;s a typographic crime.</p>\n\n\n\n<p>[00:23:47] <strong>Nathan Wrigley:</strong> I like it. Typographic crime. That&#8217;s great. We&#8217;re all of us using our devices more and more. It&#8217;s funny that you said that reading is becoming less and less, because it feels like we have text in front of us all the time now. So we&#8217;re constantly staring at our mobile phones, and our computers. But when I was a child, if I wasn&#8217;t holding book, I probably wasn&#8217;t reading.</p>\n\n\n\n<p>I mean, maybe there was a poster somewhere or something, but I&#8217;m surprised that reading is, there&#8217;s less desire to read, because it feels like every day I&#8217;m reading more or less constantly, you know, I&#8217;m scanning Twitter or Facebook or whatever.</p>\n\n\n\n<p>[00:24:26] <strong>Giulia Laco:</strong> It&#8217;s a new kind of reading, Because we had long form reading for books. Then we have glanceable reading for, I don&#8217;t know, street signs. Or maybe a manual in a website. And then we have this, they call it interlude reading. You read when you&#8217;ve time, you&#8217;re doing, you don&#8217;t have a lot of attention, you scroll. And then you have also that the way we read on the web is very different from what we read, elsewhere.</p>\n\n\n\n<p>For example, we have this shape, F shaped reading. When we, in a website, eye tracking has shown it quite a lot. You start from the top left where the logo generally is. Then you go on the right, then you go on the left, but a bit bottom, and then a bit, you are just drawing an F more or less, when you read.</p>\n\n\n\n<p>[00:25:17] <strong>Nathan Wrigley:</strong> So that&#8217;s what the eye typically does when it lands on a webpage.</p>\n\n\n\n<p>[00:25:20] <strong>Giulia Laco:</strong> Yes.</p>\n\n\n\n<p>[00:25:20] <strong>Nathan Wrigley:</strong> What was that? Top left, top right.</p>\n\n\n\n<p>[00:25:23] <strong>Giulia Laco:</strong> Bottom.</p>\n\n\n\n<p>[00:25:23] <strong>Nathan Wrigley:</strong> Bottom.</p>\n\n\n\n<p>[00:25:24] <strong>Giulia Laco:</strong> A bit in the middle, right. And then bottom again.</p>\n\n\n\n<p>[00:25:27] <strong>Nathan Wrigley:</strong> So it makes an, if you were to draw on top of that screen, it coincidentally looks a bit like a capital F.</p>\n\n\n\n<p>[00:25:32] <strong>Giulia Laco:</strong> Yes, exactly.</p>\n\n\n\n<p>[00:25:33] <strong>Nathan Wrigley:</strong> That&#8217;s fascinating.</p>\n\n\n\n<p>[00:25:34] <strong>Giulia Laco:</strong> Capital F reading.</p>\n\n\n\n<p>[00:25:36] <strong>Nathan Wrigley:</strong> Capital F reading. Presumably that&#8217;s on a desktop. On this, I&#8217;m not doing that am I? I&#8217;m holding up my phone. If I&#8217;m looking at a webpage, presumably it&#8217;s a different experience. It&#8217;s just left to right, left to right, left to right.</p>\n\n\n\n<p>[00:25:49] <strong>Giulia Laco:</strong> Also because you are hiding some part of the text with your thumbs. Are you right-handed? Left-handed? It depends what you do. And it change a lot. For example, in the UX design, we generally change some patterns with smartphones because we put some menus at the bottom because the area near the thumb, for example.</p>\n\n\n\n<p>So, if it changes where you put your fingers, your changes also where you put your eyes. Focusing in which part of the screen.</p>\n\n\n\n<p>[00:26:20] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s interesting. My experience of the internet is that usually the menu on a mobile device comes at top right. There&#8217;s usually some icon.</p>\n\n\n\n<p>[00:26:28] <strong>Giulia Laco:</strong> But that&#8217;s for convention.</p>\n\n\n\n<p>[00:26:29] <strong>Nathan Wrigley:</strong> But what you&#8217;ve just described is much more sensible, having the menu the bottom because.</p>\n\n\n\n<p>[00:26:33] <strong>Giulia Laco:</strong> I hope it will change soon.</p>\n\n\n\n<p>[00:26:34] <strong>Nathan Wrigley:</strong> Because my thumb can just go right to it. It&#8217;s just there. Yeah, that&#8217;s fascinating. It does matter what device you&#8217;re on. But are you using the same? I know that you&#8217;ve said that you reposition things like the menu or what have you, but are you using the same font on a desktop as you would be on a mobile device? Is it broadly the same? You don&#8217;t need to worry about the view port of a mobile device in terms of the CSS for setting the font. It&#8217;s just the same desktop, mobile, tablet, same fonts.</p>\n\n\n\n<p>[00:27:03] <strong>Giulia Laco:</strong> From the readability point of view, I would say yes. And it&#8217;s for branding. I guess it&#8217;s better to have different environments recognizable. Whereas you have to pay attention to licensing. If you buy a font, for example, you put it on an app, you might need a different license. If you&#8217;re using open type, open source phones, you are not going to have a problem. But if you buy, if you rent, web fonts, yeah, you might have some problem or you have to check if you can put that web front on an app. You might need a different license.</p>\n\n\n\n<p>[00:27:39] <strong>Nathan Wrigley:</strong> Yeah, I hadn&#8217;t really thought about that. It&#8217;s always quite common in the circle of friends that I have, comic sans is a font, which most of my friends ridicule. They think it&#8217;s a childish font. Nobody would put it on a professional website. Are there some fonts like that, which you would just always avoid? Not because they look childish, but because they are largely unreadable.</p>\n\n\n\n<p>[00:28:00] <strong>Giulia Laco:</strong> There might be some, for example, well comic sans has a very big history of love and hate, basically of hate actually. But remember the case and presentation of the Higgs Boson?</p>\n\n\n\n<p>[00:28:16] <strong>Nathan Wrigley:</strong> Yes. Was that done in comic sans?</p>\n\n\n\n<p>[00:28:18] <strong>Giulia Laco:</strong> Yes. There was a Twitter storm. Okay, you couldn&#8217;t use that informal font on a formal presentation, and that raised the topic actually. You have to use the font that is proper to the situation. It&#8217;s like clothing. The clothes you wear, it&#8217;s like the font you use. It depends on the situation.</p>\n\n\n\n<p>But I can understand the feeling that people have when they choose comic sans. And maybe I can suggest something similar, but a bit more proper, or a bit more interesting in that context.</p>\n\n\n\n<p>There&#8217;s one font. I am on Google fonts repository. That&#8217;s called Amantic Small Caps, and it&#8217;s a small caps, so it&#8217;s a more, it&#8217;s not lowercase. But it&#8217;s, I think has a similar mood and I would dare it&#8217;s quite a new comic sans in the mood. I mean, it has the same mood, in my opinion. I say in my opinion, it&#8217;s also because it&#8217;s in my culture, it&#8217;s very culture dependent. Because it&#8217;s based on what you saw, what you associate to those fonts for example.</p>\n\n\n\n<p>[00:29:28] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s really interesting when I travel to the US. The US have a really different set of fonts which they use, especially on government documents, than we have in the UK. And wherever I look, so I don&#8217;t know, I buy some sun cream or something like that. The font choice is utterly different from how it would typically look in the UK. And it&#8217;s kind of curious, that it&#8217;s so obvious to me that that&#8217;s an American box. And yet it&#8217;s merely a font that tells me that. But I can see it all the time.</p>\n\n\n\n<p>But what you&#8217;re saying though is you&#8217;ve got to use your intuition. There&#8217;s no rule for this is a good font, that&#8217;s a bad font. It&#8217;s really where are you putting it and your own personal preference. There are no fonts which are out of the question because they&#8217;re just literally unreadable by a subset of the people, no, you look like you&#8217;re about to say something.</p>\n\n\n\n<p>[00:30:18] <strong>Giulia Laco:</strong> Well, there might be some fonts that are really illegible, but there are some really nice experiment by a very talented type designers, David Jonathan Ross. He tried to push the boundaries of readability, making good fonts, but making how long you can go to draw a very new kind of letter and still have it readable. So that&#8217;s interesting to see. But made by people who know what they do.</p>\n\n\n\n<p>Whereas if you start, if you look at the, I don&#8217;t know, fonts that you can have on a lot of websites, just experiments by people who start. But if you, look at experiments by very good designers, oh, you know what they do.</p>\n\n\n\n<p>[00:31:06] <strong>Nathan Wrigley:</strong> You make client websites still. Do you get into this conversation quite a lot with your clients? Is typography something that you bang the drum of?</p>\n\n\n\n<p>[00:31:14] <strong>Giulia Laco:</strong> I try to listen as for everything else, to the client and understand what they need. And then I&#8217;ll try to suggest what I think is proper. It&#8217;s like also for the colour of a website for example. I ask and I give an advice maybe.</p>\n\n\n\n<p>[00:31:30] <strong>Nathan Wrigley:</strong> Are there any kind of hard and faster rules for where you, really, it would be unwise to put typography. In our show notes, I was talking about things like is it a bad idea to put, I don&#8217;t know, fonts into images.</p>\n\n\n\n<p>So you&#8217;re overlaying fonts on images. In other words, is it better always to have fonts on a plain background rather than on, let&#8217;s say you&#8217;ve got a mountain scene or something and you want to write something, you put it onto the image. Is it better to keep the text away from the images? That was just one thought.</p>\n\n\n\n<p>[00:32:02] <strong>Giulia Laco:</strong> That&#8217;s definitely better. But you have to distinguish between titles and body copy. A title might be, how can I say? It would be okay anyway. It&#8217;s only a word. You might have some tricks, for example, reducing the contest of the underground image. As long as you stick with accessibility guidelines, you&#8217;re safe for that regard.</p>\n\n\n\n<p>There are very good starting point for readability. I mean, I generally say that it&#8217;s better to start from accessibility and there are a lot of accessibility guidelines that help with the text. And then you go on and if you have some tools, like a very powerful web font, you can do more. And then you go with type setting and start type setting.</p>\n\n\n\n<p>Well, for example, you have to stop the line length. That&#8217;s very, very important. You don&#8217;t have to let your user go through all the screen, a very huge screen to go to the other line, to the second line.</p>\n\n\n\n<p>[00:33:04] <strong>Nathan Wrigley:</strong> Is there any guidance about how wide the text line should be? So maybe that&#8217;s a, I don&#8217;t know, you said using a number pixels is not always the best idea. But is there a character limit, or a word limit typically where the eye can cope with scanning from left to right and then beginning again. Because I&#8217;m staring at a Google Doc at the moment and it&#8217;s kind of interesting that the Google Doc looks like a piece of paper.</p>\n\n\n\n<p>And they&#8217;ve obviously deliberately taken it in. The Google doc could consume the whole width of my monitor, but it doesn&#8217;t. They&#8217;ve confined it to what looks like a piece of paper, and I presume that&#8217;s a convention, just so that my eye doesn&#8217;t have to go far left, far right, far left, far right. I could keep my nose pointed at the document and just let my eye do the work, whereas if it went from left to right, I would be moving my neck all the time as well. So is there a guidance of how wide text should be?</p>\n\n\n\n<p>[00:33:56] <strong>Giulia Laco:</strong> Typographers, for a long time, had recommended a line length of between 45 and 65 characters per line. It depends for Latin alphabets. The Web Accessibility Guidelines says, I think at the level Triple A. They say that they need 80 characters maximum per line for Latin, I think 40 for languages with ideograms. So they say something about that.</p>\n\n\n\n<p>And it&#8217;s very interesting to see that there&#8217;s a correlation between this line length and the way we read. The way we read is basically with eye and brain because, it&#8217;s a really complex process. But when we read with the eye, we just focus on few letters at the time, maybe six, seven characters. Then we jump to another area of fixation. And so you can do some math. A very good typographer Bruno Maag made that math.</p>\n\n\n\n<p>And he discovered that calculating the number of characters you see in each fixation has a relationship with what typographers said for years, for decades, for centuries actually. So they arrived at the same conclusions. So let&#8217;s say 55, 65 characters per line is a good measure.</p>\n\n\n\n<p>[00:35:18] <strong>Nathan Wrigley:</strong> Yeah.</p>\n\n\n\n<p>[00:35:18] <strong>Giulia Laco:</strong> On the other hand, all these factors are correlated. And especially font size, line height, and line length. Some typographers says that it&#8217;s like a triangle of these three elements have to be on balance. So if you change one, you have to change the others. Adapt the others.</p>\n\n\n\n<p>[00:35:40] <strong>Nathan Wrigley:</strong> So we&#8217;ve just been talking about the left to rightness, the line length. Is there anything about the length of the paragraphs that you use as well? I mean, I&#8217;m just used to reading books and obviously they&#8217;re confined by the width. The line length is taken account of. But I&#8217;m conscious that everything&#8217;s broken up into paragraphs and those chunks of meaning have often got little gaps between them. I&#8217;m imagining in many cases, paragraphs could go on for pages, but it&#8217;s better to break it up and it helps the brain to associate that this is a body of meaning and here&#8217;s another body of meaning and so on.</p>\n\n\n\n<p>[00:36:10] <strong>Giulia Laco:</strong> Yes. I think absolutely. The basic of our work as web designers actually. So it&#8217;s different from what we do on paper, because on screens we have to catch the attention. And so we need to make things very easy for the reader. That&#8217;s the purpose. Maybe it&#8217;s not always the case that that&#8217;s the purpose, but on web design generally, that&#8217;s the purpose.</p>\n\n\n\n<p>So it&#8217;s better to split a paragraph in a few small chunks, let&#8217;s say so, and give different, styling and introduce hierarchy as well. So that helps a lot in reading.</p>\n\n\n\n<p>[00:36:48] <strong>Nathan Wrigley:</strong> So headings and paragraphs and other headings and so on. You mentioned in the show notes that when you did your workshop, were going to give some helpful CSS to break up the text. Can you just tell us what that was? What helpful CSS did you have?</p>\n\n\n\n<p>[00:37:02] <strong>Giulia Laco:</strong> Basically, I would say that&#8217;s very important not to use an absolute unit when you set the font size. Where font size is what is more relevant in readability? Because if it&#8217;s too small, you can&#8217;t read at all. If it&#8217;s too big, also so you can&#8217;t read it well. So font size is very important and after the responsive web design, we&#8217;ve had the responsive web typography. It didn&#8217;t come at the same time. Because with responsive web design, we started to make things different for different devices. But we didn&#8217;t touch the font size.</p>\n\n\n\n<p>[00:37:40] <strong>Nathan Wrigley:</strong> Right, it was just the same. Yeah.</p>\n\n\n\n<p>[00:37:42] <strong>Giulia Laco:</strong> But it was really important to change the font size. At the beginning I thought that it was important to make smaller font size on smartphones. Because you had a very smaller screen, but that was not the reason I realized later on.</p>\n\n\n\n<p>And the reason is the distance of reading. So when you read something that is near, you don&#8217;t need a big font size. You generally keep an iPhone at 20, 30 centimeters of distance from your eye. Whereas if you read to a computer you are 70 centimeter, 80, 1 meter, I don&#8217;t know. If you read to a screen in a room, for example, yeah, it&#8217;s very, very different.</p>\n\n\n\n<p>For example, yesterday I had this at the workshop. I had this CSS Codepen. I realized I had some minimum and maximum font size in my slider. It was perfect for desktop reading. As soon as I was in the room, I said, oh no, I have to change, and I changed it to a different values because of that.</p>\n\n\n\n<p>[00:38:48] <strong>Nathan Wrigley:</strong> So, the presentation looked good on your computer, but as soon as it went on the big screen.</p>\n\n\n\n<p>[00:38:52] <strong>Giulia Laco:</strong> Okay, the presentation was okay because I knew it in advance. I mean, it was a presentation, but it was in the playground, I realized, yes. And because I had all those values, I was guessing what was reasonable values. But I didn&#8217;t test it before on such a big room.</p>\n\n\n\n<p>[00:39:10] <strong>Nathan Wrigley:</strong> So I&#8217;m guessing that at some point soon we&#8217;ll be able to make a link to WordPress TV. It occurs to me that the whole time we&#8217;ve been talking about typography, but we&#8217;ve probably been concentrating on English. Although it&#8217;s a common language, it&#8217;s by no means what everybody reads.</p>\n\n\n\n<p>So we&#8217;re going from top to bottom, left to right. But other parts of the world, let&#8217;s say people that read Arabic or Hebrew or Korean or Japanese or Chinese, whatever it is. They&#8217;re going in completely different directions, left to right, bottom to top and so on.</p>\n\n\n\n<p>Do they have similar concerns with their characters? Or is it just uniquely the Latin set of characters which has these problems?</p>\n\n\n\n<p>[00:39:54] <strong>Giulia Laco:</strong> I&#8217;m sure they have. Also maybe different problems. I&#8217;ll distinguish between Arabic to the other languages you mentioned, like Japanese, Chinese, and Korean, for example. They have ideograms. With Arabic it&#8217;s quite a calligraphic origin of the way of writing. And they make a lot of use of ligatures. It means it changes the shape of letters according to their combination.</p>\n\n\n\n<p>We have ligatures in Latin as well. For example, if you think of f and i, small lowercase letters f and y. Sometimes you have one glyph that put the dot of the i inside the f. And that&#8217;s coded inside the file, the font file.</p>\n\n\n\n<p>So in Arabic they have a lot of ligatures. And lately I&#8217;ve discovered that they also use color for accent. And Google fonts has some new fonts with this characteristic. Color fonts. Do you know color fonts?</p>\n\n\n\n<p>[00:40:54] <strong>Nathan Wrigley:</strong> No.</p>\n\n\n\n<p>[00:40:54] <strong>Giulia Laco:</strong> They&#8217;re very, very new. They&#8217;re coming.</p>\n\n\n\n<p>[00:40:57] <strong>Nathan Wrigley:</strong> How do you deploy color to. What? You&#8217;re going to have to explain that.</p>\n\n\n\n<p>[00:41:00] <strong>Giulia Laco:</strong> Well, they have color coded inside the typeface. It&#8217;s a new format we can use. And, it&#8217;s linked to CSS. It&#8217;s not so much ready, but it&#8217;s coming. It&#8217;s a new technology after variable fonts.</p>\n\n\n\n<p>[00:41:17] <strong>Nathan Wrigley:</strong> So certain aspects, certain portions of the letter receive different colors?</p>\n\n\n\n<p>[00:41:22] <strong>Giulia Laco:</strong> Yes.</p>\n\n\n\n<p>[00:41:23] <strong>Nathan Wrigley:</strong> And it provides, I have to just ask why? Why would you want to have a different portion of the letter in a different color?</p>\n\n\n\n<p>[00:41:30] <strong>Giulia Laco:</strong> Apart from Arabic, why not?</p>\n\n\n\n<p>[00:41:31] <strong>Nathan Wrigley:</strong> Oh, so it is, it&#8217;s just style. It&#8217;s not from the point of view of readability or legibility?</p>\n\n\n\n<p>[00:41:37] <strong>Giulia Laco:</strong> No. New frontiers of typography.</p>\n\n\n\n<p>[00:41:39] <strong>Nathan Wrigley:</strong> Oh, that is interesting.</p>\n\n\n\n<p>[00:41:40] <strong>Giulia Laco:</strong> But that was one point, but for Arabic might be for readability purpose. That&#8217;s why I mentioned it.</p>\n\n\n\n<p>[00:41:46] <strong>Nathan Wrigley:</strong> Honestly, this is such a fascinating subject. Unfortunately, we&#8217;re running out of time. Where would we go if we&#8217;ve been inspired by the talk that you&#8217;ve given today to me? Have you got any tips or places, websites to go to? If people are curious, where would you send them?</p>\n\n\n\n<p>[00:42:03] <strong>Giulia Laco:</strong> Okay. There are plenty of places and topography has been receiving quite an attention lately on the web. I&#8217;m always talking about on the web. But you can start with books from the tradition of typography. There are, I don&#8217;t know, from the sacred book of yypography, Robert Bringhurst, The Elements of Typographic Style. That&#8217;s a really nice starting point. Well, it&#8217;s not only a starting point.</p>\n\n\n\n<p>Erik Spiekermann&#8217;s, Stop Stealing Sheep and Find Out How Type Works. It&#8217;s very funny name. It has a history. I won&#8217;t spoiler it.</p>\n\n\n\n<p>Or I really, really liked the book by Richard Rutter, that is more on the web. It&#8217;s called Web Typography. It&#8217;s a manual on that.</p>\n\n\n\n<p>Or otherwise you can follow Jason Parmental that has been making a lot of experiments. It depends which part are you interested in.</p>\n\n\n\n<p>[00:42:59] <strong>Nathan Wrigley:</strong> You&#8217;ve given three or four things there. There&#8217;s probably something to get teeth into. And what about you? Where would we find you if people have listened to this and quite fancy having a chat with you about all this. Where do you hang out online?</p>\n\n\n\n<p>[00:43:09] <strong>Giulia Laco:</strong> Quite everyone. Maybe on LinkedIn, maybe you can reach me there so it&#8217;s better.</p>\n\n\n\n<p>[00:43:14] <strong>Nathan Wrigley:</strong> I will find your LinkedIn profile and I will link to that in the show notes. So let&#8217;s wrap it up there. Giulia, thank you so much for chatting to me today. Honestly, a real eye-opener. I&#8217;ve enjoyed that a lot.</p>\n\n\n\n<p>[00:43:24] <strong>Giulia Laco:</strong> Thank you. Me too.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/giulialaco/\">Giulia Laco</a>.</p>\n\n\n\n<p>Giulia is a web designer and developer who has been working on the web since the mid 1990s. Her primary interests are web typography &amp; font design. In addition to project development, she is a consultant and a trainer, mostly working with CSS, web fonts and web typography.</p>\n\n\n\n<p>This is the last of our podcasts from WordCamp Europe 2023. I spoke to Giulia in Athens because she had just finished her presentation entitled “Typographic readability in theme design &amp; development”.</p>\n\n\n\n<p>In this session she explored how designers can assist with the readability of websites through careful consideration of the fonts they choose, and why they choose them.</p>\n\n\n\n<p>It turns out there’s quite a lot to consider, and if you’ve not given this topic much thought in the past, you’ll perhaps learn something new.</p>\n\n\n\n<p>We begin the podcast talking through how, at the start of the web, we were making do with a limited range of tools to help us make typographic choices. There were no web fonts available, but that started to change around 2010. Now we have access to hundreds of fonts and need to be mindful that some fonts can pose readability challenges for some users of your website.</p>\n\n\n\n<p>Giulia talks about the fact that the manner in which we read has changed since the dawn of the internet. Many people now mostly consume small passages of text, which need to be considered in a different way to longer writing.</p>\n\n\n\n<p>Concentrating upon the letters in the Latin alphabet, we talk about the ways in which readers typically break up words into smaller units, and the fact that the way letters are shaped can make them easier to parse. There’s some technical language here, ligatures, X-height, apertures, and more, which tell us about the shaping and spacing of letters. Giulia explains the current state of research into how these characteristics of fonts can affect readability.</p>\n\n\n\n<p>We talk about whether or not there are fonts which are more readable than others. Is there a collection of fonts which you can use and be confident that you’re going to make it easy for all users of your websites?</p>\n\n\n\n<p>Giulia talks about how designs need to consider the spaces into which text is put. Most people have a proclivity for the order in which they view a page, and knowing about this path across the page can help your readers access the text. The width of the text is also important; you want people to be able to read from side to side without having to move their head. How does this work across different device sizes, and what can be said about text which runs from right to left, or top to bottom?</p>\n\n\n\n<p>We round off the conversation with Giulia telling us where we can find out more, as well as some of the thought leaders in this space.</p>\n\n\n\n<p>It’s a fascinating conversation about a subject that often gets overlooked. Website designers, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p>Giulia&#8217;s WordCamp Europe 2023 Session &#8220;<a href=\"https://europe.wordcamp.org/2023/session/typographic-readability-in-theme-design-development/\">Typographic readability in theme design &amp; development</a>&#8220;</p>\n\n\n\n<p><a href=\"https://thereadabilityconsortium.org/\">The Readability Consortium</a></p>\n\n\n\n<p><a href=\"https://fonts.google.com/specimen/Amatic+SC\">Amantic Small Caps font</a></p>\n\n\n\n<p><a href=\"https://djr.com/\">David Jonathan Ross&#8217; website</a></p>\n\n\n\n<p><a href=\"https://www.w3.org/WAI/standards-guidelines/wcag/\">Web Accessibility Guidelines website</a></p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/Bruno_Maag\">Bruno Maag Wikipedia page</a></p>\n\n\n\n<p><a href=\"https://fonts.google.com/\">Google fonts</a></p>\n\n\n\n<p><a href=\"https://archive.org/details/elementsoftypogr0000brin\">Robert Bringhurst&#8217;s The Elements of Typographic Style</a></p>\n\n\n\n<p><a href=\"https://www.oreilly.com/library/view/stop-stealing-sheep/9780133441147/\">Erik Spiekermann&#8217;s Stop Stealing Sheep and Find Out How Type Works</a></p>\n\n\n\n<p><a href=\"https://book.webtypography.net/\">Richard Rutter&#8217;s Web Typography</a></p>\n\n\n\n<p><a href=\"https://rwt.io/\">Jason Parmental&#8217;s website</a></p>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/giulialaco/\">Giulia&#8217;s LinkedIn page</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jul 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.3 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7320:\"<p>WordPress 6.3 RC2 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, or run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>While release candidates are considered ready for final release, additional testing and use by the community can only make it better.</p>\n\n\n\n<p>WordPress 6.3 is scheduled for release on August 8, 2023 – just two weeks from today.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.&nbsp;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">RC2 Highlights</h2>\n\n\n\n<p>Since the RC1 release on July 18, 2023, there have been approximately 15 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Editor</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=07%2F18%2F2023..07%2F25%2F2023&milestone=6.3&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Trac</a>.</p>\n\n\n\n<p>Notable updates for this release include:</p>\n\n\n\n<ul>\n<li>Footnotes will be reverted or restored with post revisions (<a href=\"https://github.com/WordPress/gutenberg/pull/52686\">#52686</a>).</li>\n\n\n\n<li>Distraction free adds a missing command in the site editor (<a href=\"https://github.com/WordPress/gutenberg/pull/52868\">#52868</a>).</li>\n\n\n\n<li>Global styles revisions will display text if no revisions are found (<a href=\"https://github.com/WordPress/gutenberg/pull/52865\">#52865</a>).</li>\n\n\n\n<li>The About Page has been completed (<a href=\"https://core.trac.wordpress.org/ticket/58067\">#58067</a>).</li>\n\n\n\n<li>The About Page now includes a “Get Involved” section (<a href=\"https://core.trac.wordpress.org/ticket/23348\">#23348</a>).</li>\n\n\n\n<li>The dark mode option has been restored in the block editor iframe for Twenty Twenty-One (<a href=\"https://core.trac.wordpress.org/ticket/58835\">#58835</a>).</li>\n\n\n\n<li>Max height value was fixed in the image scaling in the Edit Media screen (<a href=\"https://core.trac.wordpress.org/ticket/50523\">#50523</a>).</li>\n\n\n\n<li>Additionally, some issues regarding internationalization were addressed (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58879\" target=\"_blank\">#58879</a>, <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58067\" target=\"_blank\">#58067</a> and <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58864\" target=\"_blank\">#58864</a>).</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Test features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 RC2</h2>\n\n\n\n<p>You can test WordPress 6.3 RC2 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC2.zip\">RC2 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br /><code>wp core update --version=6.3-RC2</code></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks to WordPress plugin and theme developers</h2>\n\n\n\n<p>Do you build plugins and themes? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>Hopefully, you have already tested your themes and plugins with WordPress 6.3 betas by now. With RC2, you will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Haiku for RC2</h2>\n\n\n\n<p>Time is nearly here<br />WordPress shines thanks to you all<br />Let’s get testing, dear</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/priethor/\">@Priethor</a></em>,<em> <a href=\"https://profiles.wordpress.org/audrasjb/\">@AudrasJb</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">@DavidBaumwald</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">@JPantani</a></em> and <em><a href=\"https://profiles.wordpress.org/meher/\">@Meher</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 16:43:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Meher Bala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordCamp Central: WordCamp Malaysia 2023 is Looking for Speakers and Sponsors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3240139\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://central.wordcamp.org/news/2023/07/wordcamp-malaysia-2023-is-looking-for-speakers-and-sponsors/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2991:\"<img src=\"https://malaysia.wordcamp.org/2023/files/2023/06/WCMY-2023-Feature-Image-fb.png\" alt=\"\" />\n\n\n\n<p>WordCamp Malaysia 2023 is set to take place on 8-9 September 2023 at the Cheras North International Convention Centre (CNICC) in Kuala Lumpur, Malaysia. The first ever WordCamp Malaysia promises to be an unforgettable gathering, offering a platform for knowledge sharing, networking, and community building.</p>\n\n\n\n<img src=\"https://i0.wp.com/malaysia.wordcamp.org/2023/files/2023/06/CNICC-Cheras-North-International-Convention-Centre-edited.jpg?resize=680%2C382&ssl=1\" alt=\"\" class=\"wp-image-1017\" />\n\n\n\n<p>Situated near the city center, CNICC provides convenient access to major transportation hubs, allowing attendees to make the most of their time in Kuala Lumpur. With a plethora of nearby amenities and attractions, visitors can immerse themselves in the city’s rich cultural experiences, explore its iconic landmarks, indulge in its diverse culinary scene, and even venture into the nearby natural parks.</p>\n\n\n\n<img src=\"https://i0.wp.com/malaysia.wordcamp.org/2023/files/2023/06/IMG_0612.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-990\" />\n\n\n\n<p>The organizing team behind WordCamp Malaysia 2023 is actively seeking speakers who can share their valuable insights, expertise, experiences, and inspiring stories with the WordPress community. If you have a passion for WordPress and a desire to contribute to its growth, this is your chance to shine. Interested individuals can&nbsp;<a href=\"https://malaysia.wordcamp.org/2023/call-for-speakers/\">submit speaker proposals now</a>. Don’t miss the opportunity to be part of this prestigious event and make an impact on the WordPress community in Malaysia.</p>\n\n\n\n<img src=\"https://i0.wp.com/malaysia.wordcamp.org/2023/files/2023/06/HRX00555.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-989\" />\n\n\n\n<p>In addition to speakers, WordCamp Malaysia 2023 is also actively seeking sponsors to showcase and elevate their brands and products to the WordPress community in Malaysia. This is an exceptional opportunity for businesses and organizations to gain exposure, connect with a highly engaged audience, and demonstrate their commitment to supporting the WordPress ecosystem. To explore the various sponsorship packages available and learn more about the benefits of becoming a sponsor, interested parties can visit&nbsp;<a href=\"https://malaysia.wordcamp.org/2023/call-for-sponsors/\">the call for sponsors page</a>.</p>\n\n\n\n<p>To stay updated and learn more about WordCamp Malaysia 2023, visit the official website at&nbsp;<a href=\"https://malaysia.wordcamp.org/2023/\">https://malaysia.wordcamp.org/2023/</a>&nbsp;. The website will serve as your go-to resource for event details, schedules, ticketing information, speaker profiles, and other important announcements.</p>\n\n\n\n<p>Don’t miss your chance to be part of WordCamp Malaysia 2023. Submit your speaker proposal or explore sponsorship opportunities today!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 12:53:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Sam Suresh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"WordCamp Central: WordCamp Masaka 2023: Celebrating Inclusion, Diversity, and Innovation with WordPress in Uganda’s Pearl of Africa!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3166793\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:152:\"https://central.wordcamp.org/news/2023/07/wordcamp-masaka-2023-celebrating-inclusion-diversity-and-innovation-with-wordpress-in-ugandas-pearl-of-africa/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3351:\"<p><a href=\"https://masaka.wordcamp.org/2023/\">WordCamp Masaka 2023</a> is the inaugural WordCamp event in Uganda&#8217;s Greater Masaka region. It will be held on <strong>October 6 and 7, 2023</strong>, at <a href=\"https://equsat.ac.ug/\">Equator University of Science and Technology</a> in Masaka City, Uganda. The event is dedicated to celebrating inclusion, diversity and fostering innovation within Uganda&#8217;s WordPress community.</p>\n\n\n\n<p>WordCamp Masaka 2023 will offer a wide range of engaging workshops, informative talks, and student WordPress project showcases designed to cater to attendees of different skill levels. The workshops will provide hands-on learning experiences and practical knowledge to help both beginners and advanced users enhance their WordPress skills. The informative talks will cover a diverse range of topics, providing valuable insights and inspiring discussions. The student WordPress project showcases will offer a platform for attendees to share their WordPress projects, regardless of their skill level, and gain inspiration from the creativity within the community.</p>\n\n\n\n<p>In addition to the diverse range of activities, WordCamp Masaka 2023 will include a contributor session dedicated to translating WordPress from English to Luganda. This session will actively engage participants of all skill levels in the translation process, fostering collaboration and empowering Luganda (the most spoken language in Uganda) speakers to access WordPress in their native language.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get Involved</h2>\n\n\n\n<ul>\n<li><a href=\"https://masaka.wordcamp.org/2023/tickets/\">Purchase Attendee Tickets</a>: Secure your tickets to join the WordPress community in celebrating this inaugural event in the Greater Masaka region, Uganda. Tickets are available for purchase, offering a unique opportunity to engage with like-minded individuals and expand your WordPress knowledge.</li>\n\n\n\n<li><a href=\"https://masaka.wordcamp.org/2023/call-for-sponsors/\">Call for Sponsors</a>: Support the first-ever WordCamp Masaka and gain visibility for your company. Explore available sponsorship options to contribute to the success of this event and demonstrate your commitment to the WordPress community.</li>\n\n\n\n<li><a href=\"https://masaka.wordcamp.org/2023/call-for-speakers/\">Call for Speakers</a>: Share your expertise, experiences, and insights by applying to be a speaker at WordCamp Masaka 2023. The call for speaker applications welcomes submissions, allowing you to contribute to a diverse range of topics during the event.</li>\n\n\n\n<li><a href=\"https://masaka.wordcamp.org/2023/call-for-volunteers/\">Call for volunteers</a>: Apply to be a volunteer and actively participate in the organization of WordCamp Masaka 2023. Volunteering offers a unique opportunity to contribute behind the scenes and play an integral role in the success of this inaugural event.</li>\n</ul>\n\n\n\n<p>The full list of speakers, session descriptions, and schedule will be published in early September 2023. Be sure to follow us on <a href=\"https://twitter.com/WordPressMasaka\">Twitter</a> and <a href=\"https://www.facebook.com/WordCampMasaka\">Facebook</a> to get the latest updates.</p>\n\n\n\n<p>Please don&#8217;t forget to post about this event on your social media handles using the hashtag <strong>#WCMasaka</strong>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 08:50:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Ssebuwufu Moses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WPTavern: Learn How to Use WordPress Playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147137\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com/learn-how-to-use-wordpress-playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3215:\"<p>WordPress Playground, an experimental project that uses WebAssembly (WASM) to <a href=\"https://wptavern.com/new-prototype-runs-wordpress-in-the-browser-with-no-php-server\">run WordPress in the browser</a>, was <a href=\"https://twitter.com/dbchhbr/status/1679949344315936769\">number 1 on Hacker News</a> recently and was also <a href=\"https://techcrunch.com/2023/07/18/wordpress-playground-lets-you-run-wordpress-entirely-in-your-browser/\">featured on TechCrunch</a>. Word is getting around about how easy it is to fire up a sandbox environment in just a few seconds for testing plugins and themes and even different versions of WordPress and PHP.</p>\n\n\n\n<p>Visiting <a rel=\"noreferrer noopener\" href=\"https://playground.wordpress.net/\" target=\"_blank\"><code>playground.wordpress.net</code></a> instantly creates a real WordPress instance with admin access and everything without having to install PHP, MySQL, or Apache. Instead, it runs inside the browser using a SQLite database.</p>\n\n\n\n<p>The Playground isn&#8217;t just for developers. It also makes it easy for users who would not ordinarily maintain a local development environment to quickly test plugins or themes they find on WordPress.org, or to just explore new WordPress features in a safe place where you can&#8217;t break anything.</p>\n\n\n\n<p>If you have found it difficult to wrap your head around WordPress Playground, Learn WordPress has published a timely new tutorial called <a href=\"https://learn.wordpress.org/tutorial/how-to-start-using-wordpress-playground/\">How to start using WordPress Playground</a>. In this 10-minute video, WordPress Playground creator Adam Zieliński offers a quick demonstration of how to install plugins and themes and customize a site, and how to export design work from a customized theme. He also covers how to download the entire site and import it into a new WordPress instance, and guides users through basic compatibility testing of a theme, by switching the WordPress version on the playground site.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1878\" height=\"1048\" />Learn WordPress Tutorial: <a href=\"https://learn.wordpress.org/tutorial/how-to-start-using-wordpress-playground/\">How to start using WordPress Playground</a>\n\n\n\n<p>Developers who want try some more complicated things with this tool can check out the <a href=\"https://wordpress.github.io/wordpress-playground/docs/apis-overview\">Playground API</a> and learn <a href=\"https://developer.wordpress.org/playground/\">how to integrate it with an app</a> in five minutes. It&#8217;s also useful for <a rel=\"noreferrer noopener\" href=\"https://wordpress.github.io/wordpress-playground/docs/build-your-first-app#preview-pull-requests-from-your-repository\" target=\"_blank\">previewing pull requests from a repository</a> or setting up a local WordPress development environment using the <a rel=\"noreferrer noopener\" href=\"https://marketplace.visualstudio.com/items?itemName=WordPressPlayground.wordpress-playground\" target=\"_blank\">VisualStudio Code plugin</a> or <a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/playground-tools/tree/trunk/packages/wp-now\" target=\"_blank\">a CLI tool called <code>wp-now</code></a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jul 2023 22:09:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Mojeek Search Engine Adds WordPress’ Openverse to Image Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147123\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/mojeek-search-engine-adds-wordpress-openverse-to-image-search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2116:\"<img width=\"2292\" height=\"1320\" />\n\n\n\n<p><a href=\"https://www.mojeek.com/\">Mojeek</a>, a UK-based privacy-oriented search engine, has <a href=\"https://blog.mojeek.com/2023/07/expanding-mojeeks-image-search-with-openverse.html\">added Openverse to its image search</a>. For more than 15 years, Mojeek has provided independent, unbiased search without tracking or building profiles on users. It is one of just a handful of genuine search engines that uses its own technology and algorithms, unlike the metasearch engines that syndicate Bing, Google, and Yandex. In October 2022, Mojeek passed a major milestone of having <a href=\"https://blog.mojeek.com/2022/10/mojeek-now-six-billion-pages.html\">indexed more than 6 billion pages</a>. </p>\n\n\n\n<p>The search engine had previously provided Pixabay as the default for its image search with the option to use Bing as an alternative.</p>\n\n\n\n<p>&#8220;We have always wanted to eventually get rid of Bing,&#8221; Mojeek Head of Marketing Joshua Long said. &#8220;Due to both Microsoft&#8217;s API pricing decisions, and informed comments by people using Mojeek to search the web, we recently took that step.&#8221;</p>\n\n\n\n<p>Openverse&#8217;s openly-licensed media was a natural fit for the independent search engine. In 2021, Creative Commons Search was <a href=\"https://wptavern.com/creative-commons-search-is-now-openverse\">rebranded to Openverse</a> when it came under the umbrella of the WordPress open source project. With more than 700 million Creative Commons licensed and public domain image and audio files, Openverse exceeds Pixabay&#8217;s 4 million+ royalty-free and stock images, greatly expanding users&#8217; abilities to search deeper on more topics.</p>\n\n\n\n<p>Although Pixabay is still Mojeek&#8217;s default image search provider, users can change their <a href=\"https://www.mojeek.com/preferences\">preferences</a>, which are set using a local cookie and contain no personal data.</p>\n\n\n\n<p>&#8220;This addition is a testament to the utility that Openverse brings, as well as the ease and extensibility when it comes to using its API,&#8221; Long said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jul 2023 20:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"Do The Woo Community: A Deep Dive into Sales Tax for Agencies and Freelancers with Kate Bacholzky and Roger Walker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75724\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/deep-dive-into-sales-tax-agencies-freelancers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:464:\"<p>Kate Bacholzky from Avalara and Roger Walker from americaneagle.com take you deep into sales tax for yourself and your clients.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/deep-dive-into-sales-tax-agencies-freelancers/\">A Deep Dive into Sales Tax for Agencies and Freelancers with Kate Bacholzky and Roger Walker</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jul 2023 09:08:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"Gutenberg Times: All about WordPress 6.3, a breadcrumbs block, design systems and an onboarding wizard – Weekend Edition 262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=24897\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://gutenbergtimes.com/all-about-wordpress-6-3-a-breadcrumbs-block-design-systems-and-an-onboarding-wizard-weekend-edition-262/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24302:\"<p>Howdy, </p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 release candidate</a> has been published and with it the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">Fieldguide</a> with the array of changes for developers is now available. It&#8217;s a lot to digest, so we&#8217;ll keep this newsletter short. Or rather focused on the upcoming major release. Pick and choose, depending on what&#8217;s important to your work with WordPress. </p>\n\n\n\n<p>If you have something on your Wishlist for WordPress 6.4, submit a comment: <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a> (until Aug. 15)</p>\n\n\n\n<p>Be well and have a fantastic weekend! </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">All about WordPress 6.3</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-3\">Fieldguide Dev Notes WordPress 6.3 </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#2-g\">Gutenberg 16.2</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">All about WordPress 6.3</h2>\n\n\n\n<p>This week&#8217;s product walk through with <strong>Anne McCarthy</strong>, <strong>Rich Tabor</strong> and Nathan Wrigley is now available:  <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\"><strong>WordPress 6.3 Live Product Demo – Highlights &amp; Recording</strong></a>. </p>\n\n\n\n<a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\"><img /></a>\n\n\n\n<p><strong>Jonathan Patani</strong> also published the Q &amp; A from the Project Walk through on the Make Core blog: <a href=\"https://make.wordpress.org/core/2023/07/21/6-3-live-product-demo-qa/\"><strong>6.3 Live Product Demo Q&amp;A</strong></a>. You&#8217;ll learn that to add a footnote to a paragraph you just place the cursor where the number should go and use the drop-down menu from the block toolbar. Safe yourself the highlight step. Furthermore, &#8220;The revisions show changes for all styles, including changes made when viewing the stylebook.&#8221; Those are only two of the 14 questions and answers. You can also find a ton of resources that were shared during the walk-through. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Femy Praseeth</strong>, release squad member on the docs team, published a <strong><a href=\"https://make.wordpress.org/docs/2023/07/18/call-for-volunteers-to-help-with-6-3-end-user-documentation/\">Call for volunteers to help with 6.3 end-user documentation</a>. </strong>The best advice, I received when starting out in technology was: &#8220;If you want to learn anything in technology deeply, you try to explain it to others.&#8221; Here is your chance to do both. It&#8217;s also a high-impact contribution to the open-source project! As of this writing, there are still 42 tasks in the to-do-column of <a href=\"https://github.com/orgs/WordPress/projects/108/views/9\">the project board</a>, waiting for you! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On the WP Briefing <a href=\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\"><strong>Episode 60: Mike Schroder gave a sneak a peek at WordPress 6.3 </strong></a>together with <strong>Josepha Haden Chomphosy</strong>. All links and transcript are shared on the post. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Carlo Daniele</strong> at Kinsta did again a wonderful job reporting on the upcoming major WordPress release. <strong><a href=\"https://kinsta.com/blog/wordpress-6-3/\">What’s New in WordPress 6.3: A Revamped Site Editor, a New Command Palette, Style Revisions, New Blocks, and Much More!</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Doc Pop </strong>at Torque Magazine<strong>, </strong>invited me to speak with him about WordPress 6.3 and what&#8217;s coming to WordPress Phase 3 and WordPress 6.4. <a href=\"https://www.youtube.com/watch?v=YxEUmifzGlM\"><strong>Torque Social Hour: Understanding WordPress 6.3 with Birgit Pauli-Haack</strong></a>. We discussed and demoed the new footnotes, Details block, Style Variation revisions, Site Editor updates, Stylebook and more. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong>  highlights all the accessibility improvements that will come with WordPress 6.3 in this post: <a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\"><strong>WordPress 6.3 Accessibility Improvements</strong></a>,they co-authored with <strong>Joe Dolson</strong> and <strong>Alex Stine</strong>, members of the WordPress Accessibility Team </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jamie Marsland </strong>explains <a href=\"https://www.youtube.com/watch?v=aTq8v2EjG_I\"><strong>WordPress 6.3 explained in 240 seconds</strong></a>, He covers the two new blocks, Footnotes and Details, many of the Pattern changes, aspect ratio for image blocks, enhancements to the Site Editor, Style revision and more. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>For all the WordPress News outlets, <strong>Anne McCarthy</strong> provided a <a href=\"https://nomad.blog/2023/07/17/wordpress-6-3-source-of-truth/\"><strong>Source of Truth for WordPress 6.3 </strong></a>document, actually it&#8217;s more like a book with over 8,000 words. In it, they list  every single feature and update that went into the WordPress 6.3 release, so journalists and bloggers can dig deeper into things and obtain the history, discussions, and overall genesis of a change. It&#8217;s a mammoth of a post. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Dave Smith</strong> published a video on the upcoming release: <a href=\"https://www.youtube.com/watch?v=PKcMhSgBt40\"><strong>WordPress 6.3 features in 6 mins &#8211; the power of the Site Editor is finally unleashed!</strong></a> Smith also shared a ton of links to details for the features, if you&#8217;d like to take a deeper dive. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-word-press-6-3\">Fieldguide Dev Notes WordPress 6.3 </h3>\n\n\n\n<p>The release doc team assembled a huge <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">Fieldguide</a> with all the Dev Notes covering the big and small changes to WordPress. Here is the list of Block editor related Dev Notes: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n</ul>\n\n\n\n<p><strong>But wait, there is more</strong>, quoted from the Fieldguide. </p>\n\n\n\n<ul>\n<li>Anghami has been added as a trusted oEmbed provider. (<a href=\"https://core.trac.wordpress.org/ticket/49850\">#49850</a>)</li>\n\n\n\n<li>Support for TikTok creator profiles has been added. (<a href=\"https://core.trac.wordpress.org/ticket/55784\">#55784</a>)</li>\n\n\n\n<li>A new&nbsp;<code>source</code>&nbsp;attribute is added to Block patterns allowing them to be filtered by that source. (<a href=\"https://core.trac.wordpress.org/ticket/58622\">#58622</a>)</li>\n\n\n\n<li>The&nbsp;<code>Themes REST API</code>&nbsp;can now indicate whether a theme supports the Site Editor by adding an&nbsp;<code>is_block_theme&nbsp;</code>property to each theme in the&nbsp;<code>wp/v2/themes</code>&nbsp;API response. (<a href=\"https://core.trac.wordpress.org/ticket/58123\">#58123</a>)</li>\n\n\n\n<li>A&nbsp;revisions&nbsp;endpoint for global styles,&nbsp;<code>/wp/v2/global-styles/revisions</code>, has been added to the REST API. (<a href=\"https://core.trac.wordpress.org/ticket/58524\">#58524</a>)</li>\n\n\n\n<li><code>WP_REST_Templates_Controller</code>&nbsp;has a new&nbsp;<code>modified</code>&nbsp;field for template and template part objects that returns post modified datetime for Templates. (<a href=\"https://core.trac.wordpress.org/ticket/58540\">#58540</a>)</li>\n\n\n\n<li>A new public function&nbsp;<code>wp_get_remote_theme_patterns()</code>&nbsp;has been added to query the&nbsp;<code>patterns</code>&nbsp;datum from&nbsp;<code>theme.json</code>&nbsp;and substitutes current usage of private APIs. (<a href=\"https://core.trac.wordpress.org/ticket/58460\">#58460</a>)</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-g\">Gutenberg 16.2</h2>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/\">Gutenberg Changelog #87 – Patterns, Gutenberg 16.3 and WordPress 6.3.</a> with Anne McCarthy as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n</div></div>\n\n\n\n<p><strong>Sarah Gooding</strong> wrote about the latest Gutenberg release: <a href=\"https://wptavern.com/gutenberg-16-2-brings-improvements-to-pattern-management-introduces-vertical-text-orientation\"><strong>Gutenberg 16.2 Brings Improvements to Pattern Management, Introduces Vertical Text Orientation</strong></a> and highlighted, among other things, the vertical text orientation, illustrated by <a href=\"https://twitter.com/bph/status/1679464594283155458\">my tweet</a>. To enable the controls in the typography section, you need to turn it on via  the theme.json settings. </p>\n\n\n<pre class=\"wp-block-code has-primary-color has-border-background-color has-text-color has-background\"><span><code class=\"hljs language-json shcb-code-table shcb-line-numbers\"><span class=\"shcb-loc\"><span><span class=\"hljs-string\">\"typography\"</span>:{\n</span></span><span class=\"shcb-loc\"><span>      <span class=\"hljs-attr\">\"dropCap\"</span>: <span class=\"hljs-literal\">false</span>,\n</span></span><span class=\"shcb-loc\"><span>      <span class=\"hljs-attr\">\"fluid\"</span>: <span class=\"hljs-literal\">true</span>,\n</span></span><span>      <span class=\"hljs-attr\">\"writingMode\"</span>:<span class=\"hljs-literal\">true</span>,\n</span><span class=\"shcb-loc\"><span>}\n</span></span></code></span><small class=\"shcb-language\" id=\"shcb-language-11\"><span class=\"shcb-language__label\">Code language:</span> <span class=\"shcb-language__name\">JSON / JSON with Comments</span> <span class=\"shcb-language__paren\">(</span><span class=\"shcb-language__slug\">json</span><span class=\"shcb-language__paren\">)</span></small></pre>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Emily Shiola</strong> also checked out the latest Gutenberg version in her article: <a href=\"https://torquemag.io/2023/07/whats-new-in-gutenberg-the-latest-version/\"><strong>What’s New in Gutenberg: The Latest Version (July 2023)</strong></a> and updated her collection of highlights from every Gutenberg release back to Gutenberg 7.0. in November 2019. I bookmarked the post for later to walk down memory lane. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Nick Diego</strong> held a workshop on <a href=\"https://wordpress.tv/2023/07/18/builder-basics-goodbye-reusable-blocks-hello-synced-patterns-and-more/\"><strong>Builder Basics: Goodbye Reusable Blocks—Hello Synced Patterns (and more) </strong></a>and the recording is now available on WordPress.TV. Reusable blocks are a powerful way to save and reuse content across your site. In WordPress 6.3, reusable blocks will be renamed to “synced patterns.” In this online workshop, Diego explored the new functionality for creating custom patterns and managing them in the Site Editor.</p>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-50_50 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap ngl-articles-webview\">\n	\n						\n			<div class=\"ngl-article-mobile\">\n				<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/introducing-the-breadcrumbs-wordpress-block-plugin/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/07/breadcrumbs-block.jpg?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/introducing-the-breadcrumbs-wordpress-block-plugin/\" target=\"_self\" rel=\"\"><span>Introducing the Breadcrumbs WordPress Block Plugin</span></a></div><div class=\"ngl-article-excerpt\">In 2009, I announced the release of my first breadcrumbs plugin. It was a one-file PHP script that I&rsquo;d been using in my themes for around a year, and I&hellip; <a href=\"https://gutenbergtimes.com/introducing-the-breadcrumbs-wordpress-block-plugin/\" class=\"ngl-article-read-more\" target=\"_self\">Check it out</a></div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			\n			\n			\n\n		\n		\n		</div>\n\n</div>\n\n\n\n\n<p>In her article: <a href=\"https://wptavern.com/ollie-theme-previews-new-onboarding-wizard-in-development\"><strong>Ollie Theme Previews New Onboarding Wizard in Development</strong></a>, <strong>Sarah Gooding</strong> reported on <strong>Mike McAlister</strong>&#8216;s newest work developing an onboarding experience that aims to drastically reduce the amount of time users spend setting up a new site. &#8220;McAlister said the interface is all React with largely native WordPress components and a few custom components sprinkled in to handle some of the more unique aspects of the tool.&#8221; she wrote. </p>\n\n\n\n<p><strong>Mike McAlister</strong> posted about the new onboarding Wizard on hit blog as well:<strong> I<a href=\"https://olliewp.com/in-pursuit-of-a-more-intuitive-onboarding-experience/\">n </a></strong><a href=\"https://olliewp.com/in-pursuit-of-a-more-intuitive-onboarding-experience/\"><strong>pursuit of a more intuitive onboarding experience</strong></a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>With LocalWP it is a straightforward tool to set up a new development site for testing or other purposes on your computer. With blueprints, you and configure a standard set-up with a set of plugins and themes. This week, <strong>Brian Gardner</strong><a href=\"https://wpengine.com/builders/frost-blueprint-local/\"> <strong>Introduced the Frost Blueprint for Local</strong></a>. &#8220;A Local Blueprint that draws inspiration from <a href=\"https://frostwp.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Frost</a>, our <a href=\"https://wordpress.org/themes/frost/\" target=\"_blank\" rel=\"noreferrer noopener\">open-source</a> WordPress block theme. This Blueprint showcases the power and extensibility of Full Site Editing.&#8221; he wrote. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Justin Tadlock</strong> published the first part of his upcoming <em>Beyond Block Styles</em> series: <a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\"><strong>Using the WordPress scripts package with themes</strong></a>. He walks you through the details of setting up your local development space to get ready for block development. &#8220;In Part 2, you’ll learn to design a set of custom block styles. Part 3 will bring it all together into a beautiful and functional editor control. From there, well, you’ll be building some amazing features.&#8221; Tadlock wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Yesterday&#8217;s Live Q &amp; A: <a href=\"https://www.youtube.com/live/6-Epjq3FYSs?feature=share\"><strong>Design Systems and theme.json</strong></a> with <strong>David Bowman</strong>, <strong>Alec Geatches</strong> and <strong>Joni Halabi</strong> was recorded and is available on YouTube. Shared resources</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/Automattic/vip-design-system-bridge\">Repository for the design bridge</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/vip-design-system-bridge/blob/trunk/docs/design-tokens-example/README.md\">Tutorial</a> </li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/course/develop-your-first-low-code-block-theme/\">Develop Your First Low-Code Block Theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/courses/#using-the-site-editor\">Using the Site Editor Courses: </a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/create-block-theme/\">Plugin Create-Block-Theme</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/41547\">Governing block settings and interactions</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/vip-block-data-api/\">VIP Block Data API</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/vip-governance-plugin\">VIP Governance plugin</a></li>\n</ul>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2023 on. Updated by yours truly.  <em><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">The index 2022 is here</a></em></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>In last week&#8217;s Twitch stream, Ryan Welcher <strong><a href=\"https://www.twitch.tv/videos/1870840777\">explored the existing SlotFills for extending WordPress</a>.</strong>  It&#8217;s an longer version of a <a href=\"https://wordpress.tv/2023/06/30/developer-hours-exploring-editor-extensibility/\">previous talk at Developer Hours</a> a few weeks ago . He walks you through all the Slotfill existing in the post editor as well as the Site editor.  Welcher e also wrote about on the topic on WordPress Developer blog: <a href=\"https://developer.wordpress.org/news/2022/11/how-to-extend-wordpress-via-the-slotfill-system/\">How to extend WordPress via the SlotFill system</a> and presented<a href=\"https://wordpress.tv/2022/11/18/extending-wordpress-using-slotfill/\"> at WCUS 2022. </a></p>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-50_50 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap ngl-articles-webview\">\n	\n						\n			<div class=\"ngl-article-mobile\">\n				<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/live-q-a-leveraging-gutenbergs-architecture-to-take-plugin-development-to-new-levels/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/07/Gutenberg-LiveQA-Adams-Waldstein-Morita-Pauli-Haack.jpg?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/live-q-a-leveraging-gutenbergs-architecture-to-take-plugin-development-to-new-levels/\" target=\"_self\" rel=\"\"><span>Live Q &#038; A: Leveraging Gutenberg&#8217;s architecture to take plugin development to new levels</span></a></div><div class=\"ngl-article-excerpt\">In this YouTube Live Q &amp; A, participants learned how Gutenberg components and scripts can be used outside the block editor to revamp a plugin&#8217;s code base. Jason Adams, Director&hellip;</div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			\n			\n			\n\n		\n		\n		</div>\n\n</div>\n\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: <a href=\"https://wordpress.org/photos/photo/690647f4cf/\">Plants growing out of the blocks at the Acropolis by Courtney Robertson found on WordPress Photos</a></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 22 Jul 2023 08:49:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Ollie Theme Previews New Onboarding Wizard in Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/ollie-theme-previews-new-onboarding-wizard-in-development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4051:\"<p>Unless you are some kind of wizard with the block editor, starting a WordPress website from a blank slate can be overwhelming and ultimately defeating. Mike McAlister, maker of the <a href=\"https://olliewp.com/\">free Ollie theme</a>, is developing an onboarding experience that aims to drastically reduce the amount of time users spend setting up a new site.</p>\n\n\n\n<p>&#8220;I suspect we’re cutting out a half hour or more of finagling a new WordPress site,&#8221; McAlister <a href=\"https://twitter.com/mikemcalister/status/1681038694239576064\">said</a>. &#8220;No more wrestling with a blank canvas.&#8221;</p>\n\n\n\n<p>The Ollie Onboarding Wizard creates a guided setup experience that allows users to add basic site settings, select a color palette, input their brand colors, add a logo and site icon, and move on to creating pages. It eliminates the necessity of hunting all these settings down inside blocks and the Site Editor.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1983\" height=\"1642\" />\n\n\n\n<p>Instead of having to create pages individually and assign them the correct template or place the right full-page pattern, Ollie onboarding makes it possible for users to simply check which pages they want automatically created.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1983\" height=\"1642\" />\n\n\n\n<p>&#8220;The goal of this wizard is to help WordPress users zoom through a site setup with the Ollie theme and abstract away those annoying and disconnected setup steps we have to do for every site,&#8221; McAlister said.</p>\n\n\n\n<p>&#8220;The wizard is also a way to educate users along the way. WordPress is going through a much-needed evolution, but as expected, users are having a tough time with the transition. Change is tough, especially when you power half of the internet. Workflows like this can help.&#8221;</p>\n\n\n\n<p>The onboarding interface leans heavily towards the design of the Site Editor to make it seem naturally at home inside WordPress. It demonstrates just how nice plugins and themes can look in the admin with a more modern interface, which could soon be a reality once the ambitious <a href=\"https://wptavern.com/wordpress-plans-ambitious-admin-ui-revamp-with-design-system-galvanizing-broad-support-from-the-developer-community\">admin UI revamp plans</a> are complete.</p>\n\n\n\n<p>&#8220;Months ago, Patrick Posner and I agreed that the future of WordPress is in the new Site Editor view, so that’s where we built this wizard,&#8221; McAlister said. &#8220;That assumption has since been validated, and because of that, our interface blends in seamlessly with native WordPress.&#8221;</p>\n\n\n\n<p>&#8220;This is just a v1, but we’re already planning on how to seamlessly integrate choosing a vertical with curated plugins (eCommerce, landing page, email marketing, etc.) and surfacing pro features to really bring this experience together. This isn’t just a WordPress theme.&#8221;</p>\n\n\n\n<p>McAlister said the interface is all React with largely native WordPress components and a few custom components sprinkled in to handle some of the more unique aspects of the tool. </p>\n\n\n\n<p>After previewing the onboarding wizard, some people have asked if it will be available as a standalone product. McAlister confirmed that he doesn&#8217;t have any plans of productizing it but if there is enough demand he is willing to entertain the idea. Others have asked if there is an API for developers to add their own sections.</p>\n\n\n\n<p>&#8220;No API yet, although with the announcements of the admin overhaul initiative, perhaps one is coming,&#8221; McAlister said. &#8220;Right now, this is just a custom React layer that mimics the site editor view. It’s built to be flexible though, so if a core solution opens up, we can migrate to that.&#8221;</p>\n\n\n\n<p>McAlister previewed the wizard on Twitter and in his newsletter, but it&#8217;s still in development and not yet available for testing. He plans to launch the Ollie theme on WordPress.org once the wizard is ready for public use.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 22 Jul 2023 01:03:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Gutenberg Times: Live Q &amp; A: Leveraging Gutenberg’s architecture to take plugin development to new levels\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=24919\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://gutenbergtimes.com/live-q-a-leveraging-gutenbergs-architecture-to-take-plugin-development-to-new-levels/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:61388:\"<p>In this YouTube Live Q &amp; A,  participants learned how Gutenberg components and scripts can be used outside the block editor to revamp a plugin&#8217;s code base.  Jason Adams, Director of Development and Jon Waldstein, Lead Developer from GiveWP walked us through their approach to rebuilding their highly popular Donations plugin using WordPress native interface components and scripts and then also discussed how their code fits into the ecosystem. Lena Morita, a JavaScript developer on the components team. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-normal-font-size\"><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-connect-with-the-panelists\">Connect with the Panelists: </a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-resources\">Resources</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-strong-introduction-strong\">Introduction</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-strong-give-wp-plugin-architecture-strong\">Plugin architecture</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-strong-give-wp-plugin-revamp-strong\">Plugin revamp</a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-strong-give-wp-demo-strong\">Demo</a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-strong-adding-interactivity-how-a-form-works-strong\">Adding interactivity &#8211; how a form works</a></li><li><a href=\"https://gutenbergtimes.com/feed/#7-strong-rendering-strong\">Rendering</a></li><li><a href=\"https://gutenbergtimes.com/feed/#8-strong-validation-strong\">Validation</a></li><li><a href=\"https://gutenbergtimes.com/feed/#9-strong-how-its-built-strong\">How it’s built</a></li><li><a href=\"https://gutenbergtimes.com/feed/#10-strong-give-wp-challenges-strong\">Challenges</a></li><li><a href=\"https://gutenbergtimes.com/feed/#11-strong-incorporating-react-strong\">Incorporating ReactJS</a></li><li><a href=\"https://gutenbergtimes.com/feed/#12-strong-trade-offs-and-compatibility-strong\">Trade-offs and compatibility</a></li><li><a href=\"https://gutenbergtimes.com/feed/#13-strong-support-team-strong\">Support team</a></li><li><a href=\"https://gutenbergtimes.com/feed/#14-strong-sidebar-customization-isolated-block-editor-strong\">Sidebar customization &#8211; isolated Block Editor</a></li><li><a href=\"https://gutenbergtimes.com/feed/#15-strong-making-it-easier-with-documentation-and-components-strong\">Making it easier with documentation and components</a></li><li><a href=\"https://gutenbergtimes.com/feed/#16-strong-some-hard-codes-strong\">Some things are hard-coded</a></li><li><a href=\"https://gutenbergtimes.com/feed/#17-strong-locked-blocks-strong\">Locked blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#18-strong-filters-and-blocks-strong\">Filters and blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#19-strong-announcements-and-contact-info-strong\">Announcements and contact Info</a></li></ul></div>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-connect-with-the-panelists\">Connect with the Panelists: </h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-18 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-16 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Lena Morita</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://profiles.wordpress.org/0mirka00/\">WordPress profile</a></li>\n\n\n\n<li><a href=\"https://twitter.com/mirka\">Twitter @mirka</a></li>\n</ul>\n</div></div>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Jon Waldstein</strong></p>\n\n\n\n<ul>\n<li><a href=\"mailto:jon@givewp.com\">jon@givewp.com</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://twitter.com/jonwaldstein\">Twitter @jonwaldstein</a>&nbsp;</li>\n</ul>\n</div></div>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Jason Adams</strong></p>\n\n\n\n<ul>\n<li><a href=\"mailto:jason.adams@givewp.com\">jason.adams@givewp.com</a></li>\n\n\n\n<li><a href=\"https://twitter.com/jasontheadams\">Twitter @jasontheadams</a>&nbsp;</li>\n</ul>\n</div></div>\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"1-resources\">Resources</h2>\n\n\n\n<ul>\n<li><a href=\"https://poststatus.com/the-future-of-givewp-and-the-block-editor/\">Post Status: The Future of GiveWP and the Block Editor</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=wCN_M5xvPNY\">Video Walk-through</a> (9 months old, so it has improved since then)</li>\n\n\n\n<li><a href=\"https://givewp.com/lps/next-generation-donation-forms/\">GiveWP Next Gen Landing Page</a> (with ability to demo)</li>\n\n\n\n<li><a href=\"https://github.com/impress-org/givewp-next-gen/\">GiveWP Next Gen GitHub repository</a></li>\n\n\n\n<li>Blog post by Jason Adams: <a href=\"https://givewp.com/join-us-to-build-the-next-generation-of-wordpress-donation-forms/\">Join Us to Build the Next Generation of WordPress Donation Forms</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/isolated-block-editor\">Isolated Block Editor </a>(GitHub)</li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\"><strong>Transcript: </strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So welcome to our 34th Gutenberg Times Live Q&amp;A. My name is Birgit Pauli-Haack, and I&#8217;m your host and the publisher of the Gutenberg Times. Thank you all for attending the show and it&#8217;s so great to have you. So today as announced, we will discuss how a product company can leverage WordPress built in Gutenberg architecture to take plugin development to new levels.</p>\n\n\n\n<p>The team of GiveWP went all in on the approach and discovered new ways to build the new version of GiveWP Plugin. And we have the pleasure to meet two members of the technical team on the show and hear the genesis of the path and you can ask them questions. Before I introduce a panel, a few housekeeping notes. Speaking of questions, for those watching on YouTube, you can use the chat box next to the livestream and pose your questions and also chat with us or include where you&#8217;re watching from.</p>\n\n\n\n<p>I might not go over that very often, but we&#8217;ll definitely will look through the questions. And then here on Zoom, use the Q&amp;A bubble on the bottom of the screen or the jet bubble to share your thoughts and questions. Please be kind even if you disagree. This is a family friendly endeavor. If you might be wondering or your internet connection is not stable or you don&#8217;t have the time to sit through all of it, the recording will be available on YouTube later today after it&#8217;s fully rendered. Then the summary posts will be shared with the shared resources, will be on the Gutenberg Times within the next couple of weeks.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-strong-introduction-strong\">Introduction</h2>\n\n\n\n<p>So allow me to introduce our panel for today. Say hello, and let us know where you&#8217;re located tonight. I have the feeling that between the panel and the attendees, we span quite a bit of the globe. So I present to you, Jason Adams, director of development of GiveWP.</p>\n\n\n\n<p><em>Jason Adams</em>: Hi, I&#8217;m Jason. It&#8217;s good to meet y&#8217;all. I am from sunny San Diego, California.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. Yeah. I&#8217;ll also present to you Jon Waldstein, the lead developer of GiveWP, and it&#8217;s all his fault. Oh, sorry. And then last but not least, my co-host, Lena Morita, who is a JavaScript developer and core contributor to the Gutenberg components and sponsored by Automattic. Hi, Lena.</p>\n\n\n\n<p><em>Lena Morita</em>: Hi, I&#8217;m Lena. I am based in Tokyo, Japan. It&#8217;s 2:00 AM right now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. So good morning, Lena. Good morning, everybody else? Yeah, Jason and Jon, yeah, are both on the West Coast.</p>\n\n\n\n<p><em>Jon Waldstein</em>: I&#8217;m on the East Coast, Rhode Island.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: East Coast, yeah. Rhode Island. Yes, sorry.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Happy to be here.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, geography can be always a bit tricky for me.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-strong-give-wp-plugin-architecture-strong\">Plugin architecture</h2>\n\n\n\n<p>So let&#8217;s start at the beginning. Jason and I met at the post status get together at WordCamp US last year and you just had announced, GiveWP just had announced the start of the revamp of the GiveWP plugin, version 3.0. Widely distributed plugin for nonprofits and others to collect donations on website with various add-ons. Then you mentioned that you are building the new version on top of Gutenberg components and WordPress scripts and I found that fascinating. So before we dive in head first, let&#8217;s get everyone on the same plate. In short, Jason, what is GiveWP?</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, so GiveWP number one donation plugin for WordPress. We have coming up on about 200,000 folks that use GiveWP to connect donations directly from their website, manage their donors and keep their nonprofits, which is largely our audience, running. Doing their day-to-day thing and not having to work too hard to bring in donations on there to keep their work going.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. Yeah, GiveWP, I used it quite a bit when I was working for the agency, but what made you rethink the current architecture of your plugin?</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, so first Give still works very much kind of, you remember the classic editor experience of WordPress where it was it kind of data entry, right? You didn&#8217;t design or build your pages, you entered data about your pages, the content and tags and all this other stuff, and then you click publish and then you view on the front end, what did I get? We know that that worked great for decades, but now we&#8217;re moving more to a visual era of building things. People want to be able to visualize and have that kind of full more immersed experience. That was our motivator, was wanting to go down that route. We had a lot of ideas for how we wanted to do that, but we had technical debt building as all products do that was making it more and more difficult to go down that path. Yeah, we started to weigh our options of how are we going to go about taking GiveWP to the next level.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Interesting. Yeah, the drag and drop, the visual editing, I think that&#8217;s kind of really where Gutenberg shines and having a plugin follow that path. How did you figure out the path forward? Because a revamp normally is really a big project and it&#8217;s a multi-year development project, so how did you go about it?</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, and we didn&#8217;t want to do a start from scratch kind of a thing. We wanted to iteratively build it out. So what&#8217;s been nice is that our underlying architecture for donations, donors, none of that&#8217;s changing. It&#8217;s just our forms. We first explored four years ago just building something proprietary and the reality was, it was not up to the standard that you see in Gutenberg and other sorts of things today. It&#8217;s a lot of work. It&#8217;s so easy to take for granted just the idea of a block, a thing that you can move up and down. It&#8217;s a fluid user interface, inner blocks, blocks inside a block. There&#8217;s so many things that are easy to take for granted when you go to set out to build something like this. We were like, &#8220;Well, it&#8217;s right there in Gutenberg.&#8221; And so we started to kind of peel it back and we knew that Gutenberg is not&#8230; Gutenberg is in WordPress, WordPress isn&#8217;t Gutenberg. You can go to the Gutenberg repository and it&#8217;s broken out into tons of packages.</p>\n\n\n\n<p>We just started installing stuff and we did what we call spiking, where we&#8217;re just trying out an idea for a fixed length of time. I think we gave one of our developers, might have been Jon or our other senior developer on the project, shout out to him, Kyle Johnson, one of them had a week to see what they could do. We were really surprised how much we were able to get up and running. Have the list view of blocks, have the block editor itself, have our own blocks loading, the inspector.</p>\n\n\n\n<p>It&#8217;s like you have so much that you can get up and running in such a short time that would&#8217;ve taken us months to achieve and it&#8217;s already so battle tested all of these packages. It&#8217;s hard to appreciate how much that&#8217;s worth by itself. Of course this is where WordPress is going. We didn&#8217;t want to have to reimagine an entirely new user experience and then train our users on how to use that. We wanted somebody to be able to go from working on a page or a post to a form and not have to relearn the whole journey, but to be like, this feels immediately familiar. It&#8217;s a little different, but it feels inherently familiar. Reducing that user friction from changing from context to context within WordPress, which I think is really important.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes, it sounds right, a good path, but there are definitely some hurdles. So what were the first wins that you kind of say when your developer kind of set out, get a week, and then what was it exactly that they set out to do, but then found, &#8220;Oh, that is going to be fast to develop that in a week.&#8221; Normally development takes about four weeks or five weeks or something like that. Yeah. What are your first wins?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-strong-give-wp-plugin-revamp-strong\">Plugin revamp</h2>\n\n\n\n<p><em>Jason Adams</em>: Like I said, even the concept of a block, because for us, we have, and I&#8217;ll demo this in a moment here, but we have our sections and then our fields go in our sections, like name amount. To just have everything visually there and to have, &#8220;I want this field to be down there,&#8221; and making that as fluid user experience is not as easy as it sounds. Or we also have sections and fields inside of sections. So this inner block concept and then being able to select which blocks are visible based on what context you&#8217;re in. Or I click on a block and that block contextually shows up in the inspector. We achieved all of that within a week and I was like, &#8220;We have a lot of work to do.&#8221; But just the fact that we could get that far in such a short amount of time, those were the wins that were like, &#8220;Well, we don&#8217;t want to go reinvent this,&#8221; and it already is a familiar user experience, so it would be silly not to do this in short.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So I think that I find it fascinating and when you tried to describe it, I think it would be really helpful for us to have a short demo of the current state of your development so we can actually look at things and then I can see that we might have the first round of audience questions. What will you show us tonight?</p>\n\n\n\n<p><em>Jason Adams</em>: All right, let&#8217;s share my screen and show some stuff. All right. Can y&#8217;all see my screen?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes, now we can.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"5-strong-give-wp-demo-strong\">Demo</h2>\n\n\n\n<p><em>Jason Adams</em>: All right, cool. So this is GiveWP very similar to how it is now, but I have a plugin, what we&#8217;re calling our feature plugin right now installed, called NextGen that anybody can actually go test out themselves. We have a landing page for this that we can share the link for that you can just go click spin up a site and it will just spin you up a site and you can be playing with it literally in 15 seconds.</p>\n\n\n\n<p><em>Lena Morita</em>: I tried this and it was really easy.</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, thank you. So let&#8217;s see here. So I&#8217;ll add a new V3 form as we&#8217;re calling it. I won&#8217;t get into why it&#8217;s V3, but it is. So here you go. It&#8217;s funny, when we first showed this to people, it almost had an anticlimactic effect to it where they were like, &#8220;Well, what else would it look like?&#8221; Because it just fits right within WordPress. It&#8217;s like, &#8220;Oh, okay.&#8221; So you can see we&#8217;ve got the list view like you would normally have. We have our various sections, you can see everything within those sections. We&#8217;ve got the form itself. So a lot of this is very similar. Now you don&#8217;t have the fluid typing interface where you can just add paragraphs and paragraphs. You can&#8217;t just click somewhere and start typing. But that&#8217;s really neat is that you&#8217;re able to constrain how the block editor works, because for us, we don&#8217;t want people just typing in the forms. It doesn&#8217;t make sense for a form.</p>\n\n\n\n<p>Instead, people want to do something, like add a text field, and so we can just click on a section and we can add a text field, favorite color, we can mark it required. So I mean, as you see, it&#8217;s just Gutenberg. It&#8217;s the exact experience somebody would normally expect, but it&#8217;s tailored to how our forms work. And for us, we also wanted to do things like, if I come down here, I can only add a section. We wanted all fields to be within sections. So that&#8217;s a really subtle thing, that&#8217;s really powerful actually, because this is root level blocks here, and a root level block can only be a section. But then when I&#8217;m in a section and I want to add fields, well now Gutenberg knows what blocks can go in there and that&#8217;s not something we had to build. Gutenberg already has a concept of all of that kind of stuff.</p>\n\n\n\n<p>So I can come in here, you can click in and you can have that same&#8230; Gutenberg comes with a lot of what they call controls out of the box. So things like, I want to have inline text editing or something like that. That&#8217;s not something that you have to build. One other thing that I&#8217;ll point out here, is that if I go to add our blocks here, you can see that you have only our blocks. So we didn&#8217;t want to open up the form to every block that exists in WordPress. We thought about that, but we had very specific reasons why we didn&#8217;t. That&#8217;s another thing that&#8217;s really neat, is you can think of Gutenberg as creating your own sandbox environment for what you want to build. So you don&#8217;t have to think to yourselves like, &#8220;Oh my goodness, we have to&#8230;&#8221; So every block is open to this? No, you can make it limited to only your own fixed list of blocks.</p>\n\n\n\n<p>The other thing that is really neat that we&#8217;re able to do is add an additional tab over here that we call design. So this is breaking out a bit from what Gutenberg natively does. We wanted folks to have the ability to, in this view, we call it the builder view, which is where you&#8217;re focusing on the structure of your form. So it&#8217;s kind of a very vanilla, very plain looking, it&#8217;s just meant to be very clear. You can see with our donation summary here, it&#8217;s not really showing you anything real. It&#8217;s purely so that you can do things like I just want to position things where I want to have them in my form. So then you can switch over to the design tab and now we can actually view our form and this is the exact form as it&#8217;s going to render in the front end, and you can play around with secondary colors.</p>\n\n\n\n<p>So my secondary color in this form design is being used here. I can make this a nice little purple color, I can change the header, I can hide it, show it. You can do all sorts of fun things in here. But I mean that was pretty powerful of just the ability to add an entirely new type of experience within Gutenberg and giving people the ability to preview. For us, because Give forms are fairly widgety, right? We&#8217;re not trying to preview the entire page, just one thing, it worked out really nicely to be able to do it right within here.</p>\n\n\n\n<p>I&#8217;m trying to think what else. So the last thing that I&#8217;ll point out here, let me publish this. Let&#8217;s go to our form. Let&#8217;s take a look at it on the front end. Okay, so we&#8217;ve got our form here on the front end. I&#8217;m going to dive deep into the weeds here, it&#8217;s a dev audience, so just track with me. Okay, so typically when you&#8217;re working in Gutenberg, the way that we typically think of it saving is it saves as a string version to the post content. So you think of the Gutenberg HTML comments where it includes attributes and stuff about the block. You can load it dynamically and so on and so forth, but it saves to the post content column of the database. Then when you&#8217;re rendering the page, you grab that post content and you stick it on your page.</p>\n\n\n\n<p>Now for us, we didn&#8217;t want to just do that. We had to do a heck of a lot more. So if I fill this out, green for anybody who&#8217;s wondering. Then let&#8217;s throw on our test card, let&#8217;s say for five, donate. So I just made a real donation to my Stripe account. So a lot just happened there. That was obviously a lot more than just, &#8220;Oh, it looks like a form.&#8221; No, it has to actually work like a form. Forms submit data, forms store data. You can see here it&#8217;s referring to my favorite color that was stored in the donation meta. So has a lot that it needs to actually do and validate and all of this different stuff. What we did differently, is that when our forms save, so coming back here, so when I click update, it&#8217;s actually saving as JSON.</p>\n\n\n\n<p>So before Gutenberg turns into the big string that we know it to be, that saved content, it actually first stores as a JSON object. A bunch of blocks, block attributes, and then child blocks and so on and so forth. It&#8217;s a very simple structure actually. We&#8217;re doing nothing with the string content, we&#8217;re using just that JSON, and we built what we&#8217;re calling our field API and we&#8217;re converting the JSON structure into the field API. So this email address field, here it&#8217;s a block and then it gets converted into an email field on the front end, which is meaningful within GiveWP. So in other words, this is purely presentational so to speak and structural and we can convert it in any context we want. That&#8217;s a really powerful thing when you think about it, that you can take something like this, structurally speaking, and just convert it into your own API. So the block JSON, it&#8217;s focused on how is this all laid out within Gutenberg.</p>\n\n\n\n<p>When we load this page, literally all we&#8217;re doing is we&#8217;re grabbing that JSON that we save and we&#8217;re handing it back to Gutenberg and we say, &#8220;Here&#8217;s the form,&#8221; and that&#8217;s it. It just works. Then when we go to save it, we do the conversion and you can actually see that at play. If I just add another text field here, maybe. If I go to design, like that&#8217;s showing up here, because just as we&#8217;re working within, so even though I didn&#8217;t save it, that&#8217;s the kind of thing I&#8217;m showing there. Even though we didn&#8217;t save it, we&#8217;re still just grabbing that JSON object and converting it to our field API and rendering it that way.</p>\n\n\n\n<p>So I think for a lot of plugin developers and whatnot, I really want them to grasp the concept of Gutenberg is not just a way of being able to lay things out and then you just have to take whatever it gives you and slap it on the page and there you go. It&#8217;s like, no, you can use it as a tool for interacting with your user and then you can convert it into whatever context you can imagine. And that&#8217;s a pretty powerful thing.</p>\n\n\n\n<p>I think that&#8217;s it for what I had in mind for demo. Anything that anybody wants me to show a little more or poke into here?</p>\n\n\n\n<p><em>Lena Morita</em>: I have a question. So on the front end, on the actual front end form, how are you adding interactivity? Like the JavaScript parts?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"6-strong-adding-interactivity-how-a-form-works-strong\">Adding interactivity &#8211; how a form works</h2>\n\n\n\n<p><em>Jason Adams</em>: Yeah, so the way this works is that, so it takes the Gutenberg JSON, converts it into the field API, and then that is serialized and this is an iframe. Inside the iframe is a React application that&#8217;s just running independently. The React application takes in the form and then it connects to things like gateways, other add add-ons, that sort of a thing. But yeah, that&#8217;s where it&#8217;s coming from. This is just a React application of our own design, built specifically for Give forms.</p>\n\n\n\n<p><em>Lena Morita</em>: So basically field API converts all that JSON data into actual React components and stuff?</p>\n\n\n\n<p><em>Jason Adams</em>: The field API is a PHP layer.</p>\n\n\n\n<p><em>Lena Morita</em>: Oh.</p>\n\n\n\n<p><em>Jason Adams</em>: It&#8217;s pure just PHP objects, but it&#8217;s focused. Whereas the Gutenberg API is focused on blocks and child blocks, attributes, that sort of thing. Our field API is focused on how does a form work. So for example, is this a field? Is this field required? What are the validation rules for this field? Does it have any sanitization that needs to happen? So things that you would typically think about from a field or field form perspective, that&#8217;s what the field API thinks about.</p>\n\n\n\n<p>It was also really important to us that developers could programmatically&#8230; So if I want to programmatically move a field, add a field, add a section, do anything, you can do it using our field API in PHP. So you can kind of add a middleman layer between Gutenberg, a programmatic layer to be able to make more adjustments to your form. Then that&#8217;ll just show up here. For example, when I submitted this form down here, how does it know that this is a required field and what does that even mean, right? Because it has to validate on the other side. So when we submit this form on the server, it&#8217;s grabbing the form again in the structure of the field API, it&#8217;s finding the favorite color field, and then it&#8217;s checking the validation rules such as, &#8220;Hey, this is required,&#8221; or &#8220;It can only be up to 255 characters,&#8221; or whatever else. Does that make sense?</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah. So wait, the initial render of this form is not in PHP, I think you said this was initially rendered in React, or is it actually a PHP rendered page?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"7-strong-rendering-strong\">Rendering</h2>\n\n\n\n<p><em>Jason Adams</em>: I know there&#8217;s so many layers.</p>\n\n\n\n<p><em>Lena Morita</em>: It&#8217;s so interesting.</p>\n\n\n\n<p><em>Jason Adams</em>: It&#8217;s no worries. The field API lives in memory and PHP. That can be used both for rendering a form or validating a form or doing any number of things. This form represented in memory and PHP and it knows all the responsibilities of that form. Then we say, &#8220;Hey, I want to render that. That&#8217;s what I want to do this time.&#8221; And so then what it does is it, I think it&#8217;ll show you, it serializes everything. I thought it would show here. That&#8217;s fine. But anyway, it takes the whole field API structure, the form, all of its internal fields, elements and so on and so forth, serializes that, passes that to the front end, which is received by a React application.</p>\n\n\n\n<p><em>Lena Morita</em>: Oh, that&#8217;s how you hydrate it.</p>\n\n\n\n<p><em>Jason Adams</em>: Exactly. Yep. The React application is ready to receive a form in the structure of the field API JSON.</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, I&#8217;m not sure if everybody&#8217;s aware, but the interactivity API is kind of an experimental phase in Gutenberg right now. And this is a very hot topic. I feel like it&#8217;s on everybody&#8217;s minds. How do we hydrate interactive components on the front end? So it&#8217;s very intriguing how people have done this before any kind of ready-made abstraction layer.</p>\n\n\n\n<p><em>Jason Adams</em>: Right. There&#8217;s also the difference between, for example, I&#8217;m making a page, on my page I&#8217;m adding a component. This component is an accordion. It&#8217;s presentational, but there is a JavaScript element to it of, I want to be able to make interactivity happen on a presentational level versus what I&#8217;m describing here. It&#8217;s pretty complex, because there&#8217;s both a front end validation and server side validation, and we want them to be the same. There&#8217;s a lot of complexity around a form and what the form even does. So for us, our forms don&#8217;t just save and entry, our forms actually output into a donation and donor. So trying to capture the lightning in a bottle of boiling this down to interactivities, it&#8217;s like, well, it&#8217;s doing a lot more than just being interactive. It&#8217;s also validating and doing a whole bunch of other stuff.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"8-strong-validation-strong\">Validation</h2>\n\n\n\n<p>Actually, one thing I&#8217;ll show here if I switch to our multi-step design, so let&#8217;s just update this. Okay, we&#8217;ve got a completely different experience here. So now in this one, every single step, so when I do that, you notice there it kind of loaded for a moment in between steps? It&#8217;s validating with the server. So every single step is now validated against the server to make sure that everything here is in fact correct.</p>\n\n\n\n<p>Well, actually I have that differently set. Anyway, so if I were to try to continue, I&#8217;m going to get immediate validation feedback from the server. Even if you try to trick the JavaScript and make it not work and validate in the front end, it&#8217;s still going to validate on the server. So yeah, it&#8217;s a complex piece. So I think the interactivity API and stuff like that is really, really great for a lot of simpler forms of interactivity. But when you&#8217;re building what is in effect a small application, I think something like that is still a ways away from covering everything that we need this to do. Does that make sense?</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, it makes a lot of sense. Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Totally sense for me too. Especially the other pieces, not only the validation of the form, but it&#8217;s also the connection with the external services like Stripe and the databases and all of that. Those need to be abstracted too and then kind of come back through the server API I would think, to then push it again to the front end in some other places.</p>\n\n\n\n<p><em>Jason Adams</em>: Exactly, because we don&#8217;t have a fixed list of gateways here. That&#8217;s injected. We also have our own add-ons, like fee recovery, form field manager, those add additional blocks and fields and those are injected at different points. It&#8217;s a highly customizable system, so there&#8217;s a lot going on.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Super. Yeah. Well, do you have any other questions, Lena, to get them to show you something or shall we talk a little bit higher level now?</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, we can go higher level.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much, Jason, for the demo. It&#8217;s fascinating, especially how the difference between before and now, because I only know the current version or the version three years ago and what you do now. So it&#8217;s a total different beast, I would say, as complexity, but also easy to use.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"9-strong-how-its-built-strong\">How it’s built</h2>\n\n\n\n<p>So just a ballpark, would you say from the code base, how much is actually based on the WordPress components and scripts and how much of that app do you have to rebuild kind of thing? So I would think the field API on PHP, that&#8217;s kind of the interface between those two as we saw.</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Maybe it&#8217;s kind of an odd question. Yeah, I get that.</p>\n\n\n\n<p><em>Jason Adams</em>: Twenty-five percent. I mean a lot. Gutenberg definitely attributes to quite a bit.</p>\n\n\n\n<p><em>Jon Waldstein</em>: I could take that one.</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, go for it, Jon.</p>\n\n\n\n<p><em>Jon Waldstein</em>: We built the donation form, the new one that you were seeing on the front end, completely from scratch. That whole thing with React serializing or hydrating data from the server, we did that from scratch, because our old forms were just using post types. So everything is server rendered, and it&#8217;s a little difficult to add that level of interactivity with React using the old system. So we really built it, the front end, from the ground up. The form builder that Jason was demoing is mostly things you can get from the Gutenberg package. We had to customize a couple things that we had to fork and call our own, mainly the sidebar that you saw where we have that design tab, that&#8217;s not something that&#8217;s available to us. So we had to create that and implement it on our own. But for the most part, what you&#8217;re seeing on the form builder can be achieved from Gutenberg packages.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So the sidebar, when you say that, I saw the controls that were there, they looked like Gutenberg components, the color, bigger, and the different kind of&#8230; Yeah. So that definitely might have come through that. Yeah.</p>\n\n\n\n<p><em>Jason Adams</em>: We barely invented anything in the inspector.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, and that&#8217;s the beautiful thing about using Gutenberg is if you want to create a block in our form builder, there&#8217;s nothing different about it than building a WordPress Gutenberg block. And we really wanted to make sure that was the case so that there&#8217;s nothing, no crazy documentation that you have to relearn. So we do have a community of developers that interact with GiveWP, external developers, and we want to preserve the customization of the plugin. So if you know how to build a block in WordPress, you&#8217;re going to know how to build a block for us as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, that&#8217;s awesome. Yeah. Well, this is all talking about the good sides, but were there any surprises or challenges that you encountered while you were building that, or are you still encountering? What are the biggest surprises that you&#8217;ve found?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"10-strong-give-wp-challenges-strong\">Challenges</h2>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah. Well, we mentioned we had to customize some components like the sidebar. But I think the one I want to mention is GiveWP is not just one plugin. We have a lot of add-ons that extend the functionality of GiveWP, whether it be gateways and different ways to customize your form. We have a lot of things that interact with our main plugin. One of the bigger challenges recently was figuring out how to open up our customized Gutenberg form builder with our add-ons. Now, another shout out to Kyle Johnson, who is a developer on our team who built the first iteration of the form builder. To get things up and running we used just React, Create React App, which ends up bundling all the scripts together into one JavaScript file. So when you load the form builder, you&#8217;re just loading a page and it&#8217;s just loading that one JavaScript file.</p>\n\n\n\n<p>What we found out later is that in order to load external blocks from our add-ons and other things that are interacting with the form builder, all of these different things are always reacting with certain dependencies like React. They can&#8217;t all load Gutenberg at the same time. It&#8217;s just not going to work, which is how the post editor works and why WordPress Scripts package came out is that you can extract all the dependencies from your script and let WordPress load those for you. So that was a big kind of structural change we had to make so that we are now relying on WordPress to provide us with Gutenberg, which is actually something we didn&#8217;t want to do. We wanted to have full access to the latest version of Gutenberg, but it wasn&#8217;t possible for us, because we have add-ons that also need to interact with Gutenberg and React, and they can&#8217;t all just be loading their scripts at the same time. It&#8217;s just not going to work.</p>\n\n\n\n<p>Like most of us know, wp_enqueue_scripts, you add an array of dependencies that you want your script to use, and WordPress will load those for you. And that&#8217;s how we had to go about loading our form builder and then having add-ons come in and give us a block or give us something to customize the form builder and just let WordPress handle loading external scripts. That was the big one.</p>\n\n\n\n<p><em>Jason Adams</em>: I&#8217;ll add to that.</p>\n\n\n\n<p><em>Lena Morita</em>: I&#8217;m curious.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"11-strong-incorporating-react-strong\">Incorporating ReactJS</h2>\n\n\n\n<p><em>Jason Adams</em>: It&#8217;s easy to take for granted that the Gutenberg team had to tackle this issue of we&#8217;re creating a single React tree. We don&#8217;t want everybody to load their own version of React, and it has to all end up in the same place. So I remember when Gutenberg first came out and there&#8217;s the Gutenberg elements, they tucked React inside of Gutenberg, why&#8217;d they do that? And why did they come out with WP-Scripts that just swaps out for you&#8217;re doing at WordPress/components? What actually that does, is it grab it from WP.components. It&#8217;s like why is it doing all this? Well, the reality is, they went through all of the hard work of figuring out how to have everybody using the same version of React and loading everything to the same React tree all at the same time from 1,000 different places.</p>\n\n\n\n<p>That&#8217;s actually a lot harder than it sounds. Once we ran into that, we were like, &#8220;Okay.&#8221; We just had to switch everything to using WP-Scripts, because we&#8217;re like, &#8220;It&#8217;s just not worth it for us to try to solve the same problem of extensibility that Gutenberg itself has already solved so well.&#8221; It has some trade-offs, but it really, as a whole, it actually works quite well. So huge shout out to the Gutenberg team, because originally we actually had the first version of this loading in GitHub pages. It was literally totally standalone, but then we tried to extend it and we&#8217;re like, &#8220;This is a lot harder than we thought it would be.&#8221; Yeah.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"12-strong-trade-offs-and-compatibility-strong\">Trade-offs and compatibility</h2>\n\n\n\n<p><em>Lena Morita</em>: So speaking of trade-offs, I&#8217;m also sympathetic with the major downside of this. As a plug-in developer, you cannot rely on any version being in action at any moment. It&#8217;s very hard. Upstream changes can break your app at any moment. You don&#8217;t know what versions running. What are some things you&#8217;re doing to mitigate this risk I guess?</p>\n\n\n\n<p><em>Jon Waldstein</em>: We have to manually test it now. Before, if we were loading the latest version of Gutenberg, well, there&#8217;s only one instance of that. But since we&#8217;re loading Gutenberg from WordPress now, we actually had to bump up our minimum version of WordPress to whatever the version of Gutenberg that we support that comes with WordPress. That&#8217;s a major change for us, but it&#8217;s necessary.</p>\n\n\n\n<p><em>Jason Adams</em>: We previously supported back to WordPress 5.0. So this whole thing actually made us come up with an entirely new policy around which versions of WordPress do we support. Before it was like we would support a version of WordPress until we were like, &#8220;I guess there&#8217;s something that we really need,&#8221; then we would bump it up to&#8230; We were talking about bumping it up to 5.5 or something like that, but we saw no reason to cut backwards compatibility until we had a specific reason to do so. This whole thing made us realize like, &#8220;Oh, we&#8217;re really tightly coupled now.&#8221; We&#8217;re really on the WordPress bandwagon and it&#8217;s really important what versions we support.</p>\n\n\n\n<p>We didn&#8217;t invent this, other plugins are doing this, but we said, &#8220;Okay, we&#8217;re only going to officially, moving forward, support the latest released version of WordPress and the previous two.&#8221; That&#8217;s how we&#8217;re going to keep ourselves from getting into compatibility hell as new changes roll in that we have to become compatible for. Then that makes it harder and harder to be compatible with older versions. So we&#8217;re having to really kind of tighten in on that window. Fortunately, I will say, according to our telemetry, people are actually pretty darn good at staying within the latest or a few most late recent latest versions of WordPress. We don&#8217;t have a lot.</p>\n\n\n\n<p><em>Lena Morita</em>: That&#8217;s good to know.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"13-strong-support-team-strong\">Support team</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I was thinking so, what is your customer servicing to that? Yeah, because I can see that there are quite a few nonprofits that have not updated their WordPress for a while. But they could stay on your older version of GiveWP because it&#8217;s still supported, and you&#8217;re not going to cut it out right there.</p>\n\n\n\n<p><em>Jason Adams</em>: So a good product question there. So our support team is actually very much in support of it. What we&#8217;ve found is that typically people fall into one of two camps. One, they&#8217;re set it and forget it. They set up their website five years ago, and it works, so don&#8217;t touch it, right? And that&#8217;s perfectly fine. Or you have people that keep things fairly up to date. You don&#8217;t have many people that are in this weird middle space where they update some stuff and not others. And if somebody does reach out to our support team and is having an issue or something, our team is trained. One of the first things they do is they say, &#8220;Are you updated?&#8221; So it&#8217;s not like they&#8217;re going to have to suddenly change their tune, because of this new policy. It&#8217;s something we&#8217;ve already recommended to people for years is, if you&#8217;re having a problem, you should start by updating what you have to make sure that&#8230; because the problem might be fixed already and you&#8217;re just not updated.</p>\n\n\n\n<p>So yeah, we&#8217;re really not anticipating, and others like the events calendar and others have had this policy for a while, and so I did ask around within the product space, &#8220;Hey, was this a pain point for you? Did you notice a decrease in sales or higher churn rate?&#8221; The answer was unanimously, &#8220;No. No, actually, it&#8217;s a very healthy policy to have and it hasn&#8217;t caused us problems.&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So we have one more question from Anton, and I think it goes back quite a few minutes, he was asking about the sidebar if that is accomplished through slot fills.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"14-strong-sidebar-customization-isolated-block-editor-strong\">Sidebar customization &#8211; isolated Block Editor</h2>\n\n\n\n<p><em>Jon Waldstein</em>: That one, no, we actually had to fork that. But I wanted to bring up the isolated block editor, which Lena works on or has worked on, because we&#8217;ve been following that project for a little while now. I think at its inception we were also building ours, which our form builder is very similar to how the isolated block editor works. One of the biggest problems was the sidebar customization, which to answer Anton&#8217;s previous question, if you were to use isolated block editor now, you can accomplish that with technically a slot fill, because we submitted a feature request to do that, and it was actually added just recently.</p>\n\n\n\n<p>It makes it a little bit more feasible to actually switch over to the isolated block editor shortly, because we&#8217;re really not doing anything crazy. That was kind of the main thing about using WordPress as dependencies. It&#8217;s like we&#8217;re really not customizing anything that crazy. We&#8217;re just using Gutenberg. We&#8217;re not like forking every single thing. We&#8217;re loading a bunch of blocks into it and maybe doing some style changes. So it should be pretty reliable. But we are looking at the block editor, the isolated block editor, as a way forward for this. I would suggest it for anyone else looking at this project or looking at something similar to this, because it&#8217;s a really easy way to get started.</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, I agree.</p>\n\n\n\n<p><em>Jason Adams</em>: Played around using it and realize like, oh, it has things like undo, redo. We don&#8217;t have that right now, but if you use the isolated block editor, you just have it. So yeah, part of our post 3.0 launch roadmap is to switch the isolated block editor, which will also take a lot of complexity off of our plate.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Excellent. So I have another question. I&#8217;m so happy that I&#8217;m privileged to run this show so I can ask all the questions that I want.</p>\n\n\n\n<p><em>Jason Adams</em>: Go for it.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"15-strong-making-it-easier-with-documentation-and-components-strong\">Making it easier with documentation and components</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You started kind of three, four years ago thinking about it and maybe a year and a half or two years ago, really doing proof of concepts and all that. So put yourself back into the shoes you would start out now, because that would be something that plugin developers might think about. What is it that you would ask of the Gutenberg team to improve or to build on the components or on the scripts so that work is a little easier? Or much easier, not just a little easier.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Documentation has been a little bit of a struggle for us, especially being like&#8230; And we understand we&#8217;re no experts at documentation. It&#8217;s tough work.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Can you specify a little bit on the documentation? Which piece?</p>\n\n\n\n<p><em>Jon Waldstein</em>: Well, if you know are going down the path of building your own block editor, there&#8217;s very little documentation on there. If there is, it&#8217;s a little outdated. We had to do a lot of digging through reading code and finding how to actually pull this thing off that didn&#8217;t quite match up with some of the documentation out there. So that was one of the biggest hurdles. Then also some components in Gutenberg are not accessible that we wanted to pull out and use ourselves. So some of those were just not exported. Maybe they&#8217;re just internal components. We found ourselves really wanting to, and we did use some of these components, but once we switched over to relying on WordPress to provide us the scripts, we lost some of those, because they&#8217;re not available. I would have to come up with a list to give you…</p>\n\n\n\n<p><em>Lena Morita</em>: With the block editor package? In the block editor package, you mean?</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, block editor. Maybe some more. We would have to define the path to the actual build component to grab, and sometimes those were missing from the exports. We would often have to fork the whole file, which causes side effects, because it&#8217;s relying on some things. So limiting that was tough at first, but we kind of worked around it. I would&#8217;ve to come up with a list to figure out which ones are really important to people like us.</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, please send me that list. I&#8217;m interested. There is something about it.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah. Some of these would be documented like, &#8220;Hey, they&#8217;re available,&#8221; and then you&#8217;d go to use them and they&#8217;re just not.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I know that Ryan Welchers is actually on the path to put example code into the read me files and all that, and he found quite a few that if you want to use that code snippet, you couldn&#8217;t, because it didn&#8217;t export. So he actually goes through it and while he is updating the documentation to also add the export feature to it. So I didn&#8217;t find it yet now quickly, that little issue or the tracking issue of that, but I can certainly share that with you and in the show notes and also with you personally, so you can add to the list so you don&#8217;t have to start from scratch. Have you, speaking of documentation, there&#8217;s also a separate documentation site that&#8217;s called The Storybook for the components. How did that help you?</p>\n\n\n\n<p><em>Jon Waldstein</em>: That was helpful. I&#8217;m not sure how complete it is or how up to date it actually is.</p>\n\n\n\n<p><em>Lena Morita</em>: It&#8217;s getting more complete by the minute.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, there were some things on there that were very helpful.</p>\n\n\n\n<p><em>Lena Morita</em>: It&#8217;s really nice right now. We spent a lot of time on it this past year.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, I love the idea of that. There&#8217;s different documentation sites. We&#8217;re not really sure which ones are up-to-date. So maybe add a version to what thing was added, that would be helpful.</p>\n\n\n\n<p><em>Jason Adams</em>: That&#8217;s a really important note, I think. If you go to some documentation sites out there, I think React does this or Stripe does this, where the docs themselves are versioned. That&#8217;s really helpful, because otherwise that&#8217;s been a part of our struggles. We&#8217;ll find some piece of documentation on Gutenberg and we&#8217;re like, &#8220;Is this old? Is this current?&#8221; We just don&#8217;t know how to trust it. So we always end up going back to the source code anyway to validate the documentation that we found to make sure that it is in fact still recent.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, totally get that. Especially because the documentation is actually built on top. The automation of the references is actually built on top of the Gutenberg plugin, but it doesn&#8217;t tell you that when you look at it. You are looking for something and you find it and then you try it out on WordPress without the plugin and the feature isn&#8217;t there yet, because it&#8217;s coming. It&#8217;s one of the upcoming kind of things. So I totally get this. Yeah.</p>\n\n\n\n<p><em>Lena Morita</em>: This is on our radar, definitely.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, absolutely. Yeah.</p>\n\n\n\n<p><em>Lena Morita</em>: We&#8217;ll try to push for this.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"16-strong-some-hard-codes-strong\">Some things are hard-coded</h2>\n\n\n\n<p><em>Jason Adams</em>: One other minor thing on the original question I&#8217;ll add is, there are still some things in Gutenberg that are hard coded that you can&#8217;t really do anything about. One that we&#8217;re kind of just hoping nobody notices is if you click on a block and then there&#8217;s little header piece of the block there and there&#8217;s a contextual menu and options that drops down where you have things like copy styles or paste styles or that sort of a thing, we can&#8217;t get rid of that. Copying and pasting styles makes no sense in our context. We looked into it. That&#8217;s just hard coded. You can&#8217;t get rid of that. It&#8217;s just there. I was like, &#8220;Oh.&#8221; So there are still little pieces like that that you&#8217;re just like, &#8220;Well, hopefully nobody will notice that.&#8221; And then the last thing with Gutenberg that we ran into that is like, &#8220;This is interesting,&#8221; is well, not the last, another is…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I&#8217;m sure it&#8217;s not the last, yeah.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"17-strong-locked-blocks-strong\">Locked blocks</h2>\n\n\n\n<p><em>Jason Adams</em>: &#8230; locked blocks. So that&#8217;s kind of an interesting concept where, for example, you have to have an amount field for us. You can&#8217;t take that out and still have your form work. So you can lock the block, but then they can go unlock the block. So locking something, it&#8217;s more like a pinky promise with the user, like please don&#8217;t get rid of this. I think it used to be that locking was like it was done. There was no way to unlock something, and then the UI was added in the list view to be able to unlock things. That was kind of an interesting one of like, &#8220;Oh, well, how do you actually enforce that something can&#8217;t be removed? You should not be able to delete this.&#8221;</p>\n\n\n\n<p>Then the other thing that we found that was interesting with locked blocks, is that if you have a locked block in one as a child block, so we have our two sections, if I have my amount block up here, when it&#8217;s locked, I can&#8217;t move it. So you can&#8217;t take it out of this section and move it into this section. If you drag and drop, it just will do nothing. So there&#8217;s just little itty-bitty things like that that kind of pop up. So the concept of what locked means in Gutenberg is a little bit, you kind of just got to play with it to find out what does lock even mean?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah.</p>\n\n\n\n<p><em>Jason Adams</em>: It&#8217;s not clear and consistent, I would say.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"18-strong-filters-and-blocks-strong\">Filters and blocks</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah. So in the last few versions of WordPress, there were server-side filters as well as client-side filters to customize your blocks and to curate the experience and switch off interfaces and all that through PHP filters or server side or JavaScript filters. Have you been able to mitigate some of the problems that you saw before?</p>\n\n\n\n<p><em>Jason Adams</em>: With the locked stuff that we talked about?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So Nick Diego just posted on the developer blog a new&#8230; So how to modify theme.json data, which is kind of part of it. Yeah, that&#8217;s the style part, but it&#8217;s also block styling. Oh, I can share it here. Whoops.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Oh, I&#8217;ll mention one. I&#8217;ll shout out to one filter that we just found extremely useful is the JavaScript filters for registering a block type, which really was amazing because now we can have core blocks. Let&#8217;s take the amount field or something, and we can have an add-on come in and add more settings or attributes to that block using the register block type. There&#8217;s a couple other filters for doing that where you can add things to a block that wasn&#8217;t there before. That&#8217;s new to me that you could do that natively, but for us, that was huge.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s a little late in the game. Yeah. Yeah, I&#8217;m sorry, but we are getting to the end of our show. It was only scheduled for an hour. I think we could talk another two hours. I feel that way. And I don&#8217;t know, Lena probably has even more questions for you.</p>\n\n\n\n<p><em>Lena Morita</em>: Definitely. So many questions.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: But it was such a great experience to have you on the show and to share some of the secrets that you encountered and how you made it all work for yourself. We will have some resources in the show notes.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"19-strong-announcements-and-contact-info-strong\">Announcements and contact Info</h2>\n\n\n\n<p>At this point, I only have two more questions for you all three. So do you have any announcement that you wouldn&#8217;t get in before or you want people to keep in mind? We can go around Jason, Jon, and Lena. The second question is, if people want to get in touch with you, what would be the best way? So you can answer one of the questions, both questions or none.</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, so keep an eye out for Give 3.0 that will be landing at the beginning of Q3 is what we&#8217;re aiming for right now. You can go to the landing page, I provided the link for that and go spin it up and test it out yourself. We&#8217;re updating that. So as we roll out new internal versions of what we&#8217;re calling next gen, which is our 3.0, we&#8217;re updating that and we actually have it all set up. So if you do have that installed locally and we roll out a version, you can update it just like you would any other plugin and continue to test out, provide feedback. So we love getting feedback from folks on this. You can also reach out to me personally at <a href=\"mailto:jason.adams@givewp.com\">jason.adams@givewp.com</a>, or you can find me on Twitter as Jason.Adams.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah. Thank you, Jon?</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, and I&#8217;ll mention for any other developers that are interested, what we&#8217;ve demoed and what we&#8217;re showing is completely public. You could go on GitHub and look at all of this code that we wrote. It took us over a year. I think we&#8217;re coming up on a year and a half or something, maybe a little less than that, but a lot of work has gone into it. If you want to see actually what we&#8217;re doing, come on to GitHub and if you want to ask some questions, you could start a discussion on GiveWP, or we have a Canny board for additional feedback. If you were to go to the landing page and actually play around with this thing, you can actually provide feedback and we&#8217;ll take all the feedback into consideration for the future of GiveWP. And if you want to get in touch with me, I&#8217;m on Twitter, Jon Waldstein and <a href=\"mailto:jon@givewp.com\">jon@givewp.com</a> if you want to send me an email.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. And Lena?</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, I guess for me, I mentioned I work on the work path components package and me and the team that works on it, we really, really are always looking for new contributors. So if anyone&#8217;s interested in contributing back, we love working with new contributors. We are highly engaging and we collaborate a lot. So if anybody&#8217;s interested, just pick up an issue or I don&#8217;t know, ping me and we&#8217;ll help you find a fun, good issue to work on. You can find me on Twitter at Mirka, M-I-R-K-A. Same ID on GitHub.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah. And so my link or my answer is that we will do another live Q&amp;A in two weeks actually, but on Friday, on Friday, July 21st. We&#8217;ll talk about design systems and theme.json. I know that there are large agencies and large entities like universities, and so they all have a design system. They have corporate design, and they need all the websites kind of to follow that. The WordPress VIPs team built a bridge between Figma and theme.json. I hope I get the people who created that on the show. We will have some demos there, of course. We also will talk with Joni Halabi, who is the web developer at Georgetown University, and she also has, as a university, big design systems and how she works with patterns. So it&#8217;s a great show and I hope you will join us again there.</p>\n\n\n\n<p>So a big thank you to our viewers and to Anton for the great questions. If you have more questions, you can always send them to me via email. That&#8217;s <a href=\"mailto:pauli@gutenbergtimes.com\">pauli@gutenbergtimes.com</a>. P-A-U-L-I at gutenbergtimes.com. Recording, as I mentioned, will be available in a few minutes on the YouTube channel, and we&#8217;ll publish a transcript in a couple of weeks on gutenbergtimes.com.&nbsp;</p>\n\n\n\n<p>Thanks again to Jason, Jon, and Lena for being here. It&#8217;s been a privilege to have you on the show, and it was a great joy talking to you. Be well and goodbye and good luck. Take care.</p>\n\n\n\n<p><em>Jason Adams</em>: Thank you.</p>\n\n\n\n<p><em>Lena Morita</em>: Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Thank you.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Bye.</p>\n\n\n\n<p><em>Lena Morita</em>: Bye.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Bye, everyone.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2023 23:50:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"WPTavern: WordPress Contributors Demand Transparency and Objective Guidelines for Listings on Recommended Hosting Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://wptavern.com/wordpress-contributors-demand-transparency-and-objective-guidelines-for-listings-on-recommended-hosting-page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6958:\"<p>WordPress&#8217; <a href=\"https://wordpress.org/hosting/\">Recommended Hosting</a> page is a hotly contested piece of online real estate, and has recently come into focus again following the<a href=\"https://meta.trac.wordpress.org/changeset/12718\"> removal of SiteGround</a> from the listings. When the change was highlighted during a recent Meta team meeting, Audrey Capital-sponsored contributor Samuel &#8220;Otto&#8221; Wood <a href=\"https://wordpress.slack.com/archives/C02QB8GMM/p1689199290876499\">said</a>, &#8220;Matt asked me to remove SiteGround because that page is getting revamped. I know no more than that.&#8221; Bluehost and Dreamhost are the only two hosts remaining on the page at this time.</p>\n\n\n\n<p>The process for being listed on the Recommended Hosting page has historically been <a href=\"https://wptavern.com/the-recommended-hosting-page-on-wordpress-org-starts-over-from-scratch\">shrouded in secrecy</a>, causing contributors to speculate that large sums of money were required. Although the current criteria is posted on the page, the process of getting listed and de-listed is not transparent. It&#8217;s not clear if and how the criteria is being applied, as it states that listings are &#8220;completely arbitrary:&#8221;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>We’ll be looking at this list several times a year, so keep an eye out for us re-opening the survey for hosts to submit themselves for inclusion. Listing is completely arbitrary, but includes criteria like: contributions to WordPress.org, size of customer base, ease of WP auto-install and auto-upgrades, avoiding GPL violations, design, tone, historical perception, using the correct logo, capitalizing WordPress correctly, not blaming us if you have a security issue, and up-to-date system software.</p>\n</blockquote>\n\n\n\n<p>WordPress co-creator Matt Mullenweg has recently hinted at the possibility of re-opening the survey, inviting contributors in WordPress&#8217; Hosting Slack channel to weigh in on questions or data the survey should collect &#8220;to help us discern who we recommend.&#8221; He linked to questions from the <a href=\"https://mcm.survey.fm/2023-wordpress-hosting-survey\">survey used in 2016</a> when the page was <a href=\"https://wptavern.com/the-wordpress-org-recommended-hosting-page-is-revamped-features-flywheel-for-the-first-time\">updated</a> to include Bluehost, DreamHost, Flywheel, and SiteGround.</p>\n\n\n\n<p>The new draft for the survey states: &#8220;It&#8217;s time to loop back and give every host an opportunity to be on the recommended page, and also make it international because we never really got recommended hosts in non-English countries right.&#8221;</p>\n\n\n\n<p>The WordPress Hosting team has been working on a related effort called &#8220;<a href=\"https://docs.google.com/document/d/1FhjFjY9I6gn6uqz4oBsHvYzxnrUg0RfAYuRhlLjdWec/edit\">Project Bedrock</a>&#8221; that aims to create a directory in which any hosting company that meets a series of predefined requirements can appear as recommended hosting or compatible with the WordPress CMS. </p>\n\n\n\n<p>&#8220;Yes, project bedrock is a goal,&#8221; Hosting team rep Javier Casares said. &#8220;Some months ago we left the project in stand-by to create a pre-version of the project, creating a list of hosting companies inside the Make/Hosting, a &#8216;everyone can be on the list&#8217; (if criteria) as a complement for the /hosting), but the idea is that /hosting, this pre-project or the project should have the same criteria (the base).</p>\n\n\n\n<p>&#8220;We know Matt is the responsible for the /hosting, our idea is creating a &#8216;longer list&#8217; for the Hosting Handbook / page at Make/hosting. The idea is having the same criteria. So, both are complementary.&#8221;</p>\n\n\n\n<p>Although contributors to the project view it as complementary to the official recommendations, it may be confusing for WordPress to have multiple similar hosting resources with the same criteria but different listings. These appear to be conflicting efforts that have a lot of overlap but may ultimately be at odds with the goal of simplifying the host selection process for new WordPress users who don&#8217;t know which ones to consider.</p>\n\n\n\n<p>Casares suggested a few technical criteria that the survey should focus on, including PHP versions, database versions, SSH access, automatic updates, one-click WordPress installation, free TLS certificates, backup, and more.</p>\n\n\n\n<p>The 2023 survey is still in the early stages in draft form. WordPress Hosting team contributors suggested that requirements for revamping the page would be a good topic for discussion at WordCamp US&#8217; upcoming Community Summit next month.</p>\n\n\n\n<p>In the Post Status hosting channel, Namecheap co-founder Matt Russell suggested Mullenweg leverage <a href=\"https://wphostingbenchmarks.com/\">WPHostingBenchmarks</a> performance data. </p>\n\n\n\n<p>&#8220;[WPHostingBenchmarks is] probably the most open, fairest, and long-term performance evaluation in the WP space,&#8221; Russell said. He also recommended Mullenweg revamp the page as more of a directory with options to select budget, regions/country, and more.</p>\n\n\n\n<p>Review Signal founder Kevin Ohashi, who publishes the WPHostingBenchmarks site, shared concerns about transparency that he has had since the last time the page was updated:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Who is reviewing this information? What criteria will be used in evaluating them? I know last time you said you were involved, as were other folks from Automattic. Automattic is a competitor in the hosting space, and no matter the hat being worn, there is some concern over sharing sensitive business info with a competitor.</p>\n\n\n\n<p>Getting listed on that page is likely worth millions of dollars to any company in terms of business generated. I think the process and criteria should be transparent and clear from the beginning. I also think who is involved with evaluating should be known beforehand as well. At least give companies, and consumers, the information they deserve to evaluate participating and the outcome.</p>\n</blockquote>\n\n\n\n<p>Ohashi recommends that no person employed by a hosting company should be involved in the evaluation of submissions. This would eliminate bias from competitors in the space trying to suppress those they deem to be a threat.</p>\n\n\n\n<p>&#8220;I&#8217;d like to see more ethics and accountability, a code of ethics for any company getting listed would be a positive in my mind,&#8221; Ohashi said. &#8220;Companies should be competing on quality and product, not on astroturfing, deceptive billing practices and other shady behavior we often see in the space. In my benchmarks, I push measuring default performance because I believe that benefits the greatest number of customers. I think there&#8217;s an opportunity to push for a better ecosystem here and would love to see you take it.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2023 21:42:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WordPress.org blog: WordPress 6.3 Live Product Demo – Highlights &amp; Recording\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15445\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7537:\"<p>WordPress 6.3 ships on August 8th! For a sneak peek of what&#8217;s to come, members of the 6.3 release squad, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> and <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, held a live demo moderated by <a href=\"https://profiles.wordpress.org/njwrigley/\">Nathan Wrigley</a>.&nbsp;</p>\n\n\n\n<p>More than 100 attendees watched as some of the most anticipated product features were demonstrated, from the brand-new Command Palette to new design tools and more.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>6.3 Live Product Demo\n\n\n\n<p>Here are some of the key takeaways from the 6.3 live product demonstration.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Command Palette’s big debut</h2>\n\n\n\n<p>One of the most anticipated features of 6.3 is the <a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Command Palette</a>. It lets you quickly navigate and open different WordPress functions within the post and Site Editor. Access it using a shortcut command (Command + K or Control + K).</p>\n\n\n\n<h2 class=\"wp-block-heading\">Page creation gets easier in the Site Editor</h2>\n\n\n\n<p>Now you can browse and edit pages within the Site Editor, providing a more cohesive WordPress experience. A new drafting flow debuts, allowing you to create and publish pages directly within the editor.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Synced Patterns set to replace Reusable Blocks</h2>\n\n\n\n<p>You can create and manage all your patterns directly in the Site Editor. Once edited, all synced patterns (previously called Reusable Blocks) will change across a site—a huge time saver when making changes.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Stay on top of design changes with Style Revisions</h2>\n\n\n\n<p>This enhancement offers a visual timeline of your site so you can see all the revisions in your site’s history and restore a previous style with just a click.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">New design tools and blocks</h2>\n\n\n\n<p>Controls for specifying aspect ratios to ensure design integrity, especially when using images in Patterns debut in 6.3, along with new blocks for Footnotes and Details. Easily add footnotes to your content and have them automatically linked to the corresponding text. With the Details block, hide or display content to create spoilers or accordions.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Performance</h2>\n\n\n\n<p>WordPress is getting faster with 6.3 as content with images will see speedier load times. Both theme types (Classic and Block) will also benefit from performance improvements. The upcoming <a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">hallway hangout</a> is an excellent opportunity to learn more about performance enhancements directly from the WordPress Performance team.</p>\n\n\n\n<h2 class=\"wp-block-heading\">More from Core</h2>\n\n\n\n<ul>\n<li>Revert to previously installed versions when <a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">manual updates for themes and plugins fail</a>.&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support</a> for PHP 5. The new minimum supported version of PHP will be 7.0.0. The recommended version of PHP remains at 7.4 or greater.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">Accessibility updates</a>, especially for List View and the broader Site Editor experience.</li>\n\n\n\n<li>Improvements to internationalization <a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">just-in-time translation loading</a>.</li>\n</ul>\n\n\n\n<p>These new features and more await you as Phase 2 of the <a href=\"https://wordpress.org/about/roadmap/\">WordPress Roadmap</a> comes to a close with the 6.3 release.</p>\n\n\n\n<p>A <a href=\"https://make.wordpress.org/core/2023/07/21/6-3-live-product-demo-qa/\">question and answer session</a> followed the demo, with attendees asking plenty of great questions. The panelists shared links for additional reading regarding many new features—all conveniently added to the end of this post.&nbsp;</p>\n\n\n\n<p>A big thank you to everyone who helps make WordPress. Contributors power every WordPress release. Without the hundreds of contributors worldwide who help build WordPress, this live product demo wouldn’t have been possible. Thank you for all of your hard work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">References from the Live Demo</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the Power of Patterns</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/documentation/article/comparing-patterns-template-parts-and-reusable-blocks/\">Comparing Patterns, Template Parts, and Reusable Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">The 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support for PHP 5</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">Internationalization Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/30496\">#30496 Site Editor: MVP Customizer Compatibility/Integration</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/52128\">#52128 Customization Ongoing Roadmap</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/building-sidebars-with-the-site-editor/\">Building sidebars with the Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n</ul>\n\n\n\n<p>Props to <a href=\"https://profiles.wordpress.org/richtabor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>richtabor</a> and <a href=\"https://profiles.wordpress.org/annezazu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annezazu</a> for reviewing this post and to <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>, and <a href=\"https://profiles.wordpress.org/dansoschin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dansoschin</a> for their logistics support to run the event.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2023 19:26:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 10 Aug 2023 05:08:19 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Thu, 10 Aug 2023 04:45:31 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 5\";}}s:5:\"build\";s:14:\"20230809052849\";}','no'),(275,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1691687300','no'),(276,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1691644100','no'),(277,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1691687300','no'),(278,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/08/lionel/\'>WordPress 6.3 “Lionel”</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\'>Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-plugin-review-team-addresses-backlog-of-900-plugins-implements-strategies-to-improve-approval-process\'>WPTavern: WordPress Plugin Review Team Addresses Backlog of 900+ Plugins, Implements Strategies to Improve Approval Process</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/kadence-blocks-3-1-11-patches-critical-vulnerability\'>WPTavern: Kadence Blocks 3.1.11 Patches Critical Vulnerability</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/wordpress-6-3/\'>Post Status: WordPress 6.3 • Release Workflows • European Union Cyber Resiliency Act • Gutenberg Accessibility</a></li></ul></div>','no'),(279,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:18:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:19:\"elementskit-funfact\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.2\";}s:7:\"divider\";a:2:{s:7:\"content\";s:4311:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:5051:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:17:\"elementskit-video\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:4:\"icon\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:7:\"counter\";a:2:{s:7:\"content\";s:808:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:17:\"eael-feature-list\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:23:\"elementskit-testimonial\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:23:\"elementskit-client-logo\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:23:\"eael-filterable-gallery\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:9:\"copyright\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:10:\"eael-ninja\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:23:\"elementskit-ninja-forms\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.2\";}s:5:\"video\";a:2:{s:7:\"content\";s:1883:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-video .elementor-widget-container{overflow:hidden;transform:translateZ(0)}.elementor-widget-video .elementor-wrapper{aspect-ratio:var(--video-aspect-ratio)}.elementor-widget-video .elementor-wrapper iframe,.elementor-widget-video .elementor-wrapper video{height:100%;width:100%;display:flex;border:none;background-color:#000}@supports not (aspect-ratio:1/1){.elementor-widget-video .elementor-wrapper{position:relative;overflow:hidden;height:0;padding-bottom:calc(100% / var(--video-aspect-ratio))}.elementor-widget-video .elementor-wrapper iframe,.elementor-widget-video .elementor-wrapper video{position:absolute;top:0;right:0;bottom:0;left:0}}.elementor-widget-video .elementor-open-inline .elementor-custom-embed-image-overlay{position:absolute;top:0;right:0;bottom:0;left:0;background-size:cover;background-position:50%}.elementor-widget-video .elementor-custom-embed-image-overlay{cursor:pointer;text-align:center}.elementor-widget-video .elementor-custom-embed-image-overlay:hover .elementor-custom-embed-play i{opacity:1}.elementor-widget-video .elementor-custom-embed-image-overlay img{display:block;width:100%;aspect-ratio:var(--video-aspect-ratio);-o-object-fit:cover;object-fit:cover;-o-object-position:center center;object-position:center center}@supports not (aspect-ratio:1/1){.elementor-widget-video .elementor-custom-embed-image-overlay{position:relative;overflow:hidden;height:0;padding-bottom:calc(100% / var(--video-aspect-ratio))}.elementor-widget-video .elementor-custom-embed-image-overlay img{position:absolute;top:0;right:0;bottom:0;left:0}}.elementor-widget-video .e-hosted-video .elementor-video{-o-object-fit:cover;object-fit:cover}.e-con-inner>.elementor-widget-video,.e-con>.elementor-widget-video{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.21.8\";}}}}','yes'),(280,'_transient_timeout_elementor_remote_templates_data_3.15.2','1691688847','no');
INSERT INTO `wp_options` VALUES (281,'_transient_elementor_remote_templates_data_3.15.2','a:823:{i:0;a:18:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:18:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:18:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:18:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:18:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:18:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:18:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:18:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:18:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:18:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:18:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:18:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:18:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:18:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:18:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:18:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:18:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:18:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:18:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:18:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:18:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:18:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:18:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:18:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:18:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:18:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:18:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:18:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:18:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:18:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:18:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:18:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:18:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:18:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:18:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:18:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:18:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:18:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:18:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:18:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:18:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:18:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:18:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:18:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:18:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:18:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:18:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:18:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:18:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:18:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:18:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:18:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:18:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:18:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:18:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:18:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:18:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:18:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:18:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:18:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:18:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:18:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:18:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:18:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:18:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:18:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:18:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:18:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:18:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:18:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:18:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:18:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:18:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:18:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:18:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:18:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:18:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:18:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:18:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:18:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:18:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:18:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:18:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:18:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:18:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:18:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:18:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:18:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:18:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:18:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:18:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:18:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:18:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:18:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:18:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:18:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:18:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:18:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:18:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:18:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:18:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:18:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:18:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:18:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:18:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:18:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:18:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:18:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:18:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:18:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:18:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:18:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:18:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:18:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:18:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:18:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:18:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:18:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:18:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:18:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:18:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:18:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:18:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:18:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:18:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:18:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:18:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:18:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:18:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:18:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:18:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:18:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:18:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:18:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:18:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:18:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:18:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:18:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:18:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:18:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:18:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:18:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:18:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:18:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:18:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:18:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:18:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:18:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:18:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:18:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:18:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:18:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:18:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:18:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:18:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:18:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:18:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:18:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:18:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:18:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:18:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:18:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:18:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:18:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:18:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:18:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:18:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:18:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:18:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:18:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:18:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:18:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:18:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:18:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:18:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:18:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:18:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:18:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:18:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:18:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:18:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:18:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:18:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:18:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:18:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:18:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:18:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:18:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:18:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:18:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:18:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:18:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:18:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:18:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:18:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:18:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:18:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:18:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:18:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:18:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:18:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:18:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:18:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:18:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:18:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:18:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:18:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:18:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:18:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:18:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:18:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:18:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:18:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:18:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:18:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:18:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:18:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:18:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:18:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:18:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:18:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:18:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:18:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:18:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:18:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:18:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:18:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:18:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:18:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:18:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:18:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:18:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:18:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:18:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:18:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:18:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:18:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:18:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:18:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:18:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:18:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:18:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:18:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:18:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:18:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:18:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:18:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:18:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:18:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:18:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:18:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:18:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:18:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:18:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:18:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:18:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:18:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:18:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:18:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:18:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:18:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:18:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:18:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:18:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:18:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:18:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:18:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:18:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:18:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:18:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:18:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:18:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:18:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:18:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:18:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:18:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:18:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:18:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:18:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:18:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:18:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:18:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:18:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:18:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:18:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:18:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:18:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:18:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:18:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:18:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:18:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:18:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:18:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:18:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:18:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:18:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:18:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:18:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:18:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:18:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:18:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:18:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:18:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:18:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:18:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:18:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:18:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:18:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:18:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:18:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:18:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:18:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:18:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:18:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:18:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:18:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:18:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:18:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:18:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:18:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:18:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:18:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:18:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:18:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:18:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:18:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:18:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:18:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:18:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:18:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:18:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:18:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:18:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:18:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:18:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:18:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:18:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:18:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:18:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:18:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:18:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:18:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:18:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:18:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:18:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:18:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:18:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:18:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:18:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:18:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:18:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:18:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:18:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:18:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:18:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:18:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:18:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:18:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:18:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:18:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:18:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:18:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:18:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:18:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:18:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:18:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:18:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:18:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:18:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:18:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:18:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:18:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:18:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:18:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:18:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:18:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:18:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:18:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:18:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:18:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:18:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:18:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:18:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:18:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:18:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:18:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:18:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:18:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:18:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:18:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:18:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:18:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:18:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:18:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:18:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:18:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:18:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:18:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:18:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:18:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:18:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:18:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:18:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:18:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:18:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:18:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:18:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:18:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:18:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:18:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:18:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:18:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:18:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:18:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:18:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:18:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:18:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:18:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:18:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:18:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:18:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:18:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:18:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:18:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:18:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:18:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:18:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:18:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:18:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:18:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:18:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:18:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:18:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:18:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:18:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:18:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:18:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:18:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:18:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:18:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:18:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:18:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:18:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:18:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:18:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:18:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:18:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:18:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:18:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:18:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:18:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:18:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:18:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:18:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:18:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:18:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:18:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:18:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:18:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:18:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:18:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:18:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:18:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:18:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:18:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:18:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:18:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:18:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:18:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:18:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:18:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:18:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:18:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:18:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:18:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:18:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:18:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:18:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:18:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:18:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:18:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:18:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:18:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:18:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:18:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:18:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:18:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:18:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:18:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:18:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:18:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:18:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:18:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:18:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:18:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:18:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:18:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:18:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:18:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:18:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:18:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:18:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:18:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:18:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:18:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:18:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:18:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:18:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:18:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:18:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:18:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:18:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:18:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:18:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:18:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:18:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:18:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:18:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:18:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:18:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:18:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:18:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:18:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:18:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:18:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:18:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:18:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:18:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:18:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:18:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:18:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:18:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:18:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:18:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:18:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:18:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:18:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:18:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:18:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:18:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:18:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:18:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:18:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:18:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:18:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:18:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:18:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:18:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:18:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:18:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:18:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:18:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:18:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:18:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:18:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:18:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:18:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:18:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:18:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:18:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:18:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:18:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:18:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:18:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:18:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:18:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:18:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:18:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:18:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:18:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:18:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:18:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:18:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:18:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:18:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:18:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:18:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:18:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:18:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:18:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:18:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:18:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:18:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:18:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:18:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:18:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:18:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:18:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:18:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:18:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:18:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:18:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:18:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:18:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:18:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:18:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:18:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:18:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:18:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:18:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:18:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:18:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:18:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:18:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:18:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:18:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:18:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:18:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:18:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:18:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:18:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:18:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:18:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:18:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:18:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:18:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:18:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:18:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:18:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:18:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:18:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:18:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:18:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:18:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:18:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:18:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:18:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:18:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:18:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:18:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:18:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:18:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:18:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:18:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:18:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:18:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:18:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:18:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:18:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:18:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:18:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:18:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:18:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:18:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:18:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:18:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:18:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:18:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:18:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:18:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:18:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:18:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:18:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:18:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:18:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:18:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:18:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:18:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:18:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:18:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:18:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:18:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:18:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:18:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:18:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:18:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:18:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:18:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:18:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:18:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:18:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:18:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:18:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:18:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:18:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:18:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:18:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:18:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:18:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:18:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:18:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:18:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:18:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:18:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:18:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:18:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:18:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:18:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:18:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:18:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:18:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:18:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:18:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:18:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:18:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:18:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:18:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:18:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:18:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:18:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:18:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:18:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:18:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:18:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:18:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:18:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:561;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:18:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:562;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:18:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:563;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:18:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:18:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:18:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:18:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:18:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:18:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:18:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:18:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:18:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:18:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:18:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:18:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:18:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:18:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:18:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:18:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:18:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:18:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:18:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:18:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:18:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:18:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:18:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:18:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:18:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:18:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:18:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:18:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:18:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:18:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:18:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:18:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:18:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:18:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:18:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:18:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:18:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:18:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:18:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:18:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:18:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:18:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:18:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:606;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:18:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:607;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:18:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:608;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:18:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:609;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:18:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:18:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:756;a:18:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:18:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:18:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:18:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:18:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:18:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:18:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:18:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:18:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:18:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:18:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:18:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:18:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:18:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:18:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:18:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:18:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:18:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:18:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:18:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:18:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:18:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:18:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:18:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:18:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:18:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:18:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:18:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:18:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:18:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:18:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:18:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:18:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:18:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:18:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:18:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:18:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:18:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:18:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:18:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:18:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:18:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:18:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:18:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:18:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:18:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:18:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:18:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:18:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:18:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:18:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:18:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:18:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:18:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:18:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:18:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:18:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:18:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:18:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:18:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:18:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:18:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:18:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:18:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:18:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:18:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:18:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}','no'),(284,'_site_transient_timeout_wp_remote_block_patterns_63ba30730e414de2219f2d1f17ebfde9','1691651164','no'),(285,'_site_transient_wp_remote_block_patterns_63ba30730e414de2219f2d1f17ebfde9','a:46:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:310547;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Poster on Left, Paragraph on Right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3610:\"\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-center\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#36220c\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-space-between is-layout-flex wp-container-8 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-top-right wp-container-content-2 wp-duotone-rgb137750-rgb210210210-4\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:75vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-vertical is-content-justification-right is-nowrap is-layout-flex wp-container-1 wp-block-group-is-layout-flex\">\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:140px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">Wardell</p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:130px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">gray</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#d09c9c;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">Plays</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:0.8;text-transform:uppercase\">Bebop &amp;</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">SWING</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-group wp-container-content-6 is-vertical is-nowrap is-layout-flex wp-container-7 wp-block-group-is-layout-flex\">\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">Wardell Gray was born in Oklahoma City, the youngest of four children. His early childhood years were spent in Oklahoma, before moving with his family to Detroit in 1929. </p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">In early 1935, Gray began attending Northeastern High School, and then transferred to Cass Technical High School, which is noted for having Donald Byrd, Lucky Thompson and Al McKibbon as alumni. </p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-5 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:700;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color wp-element-button\" style=\"border-radius:0px;color:#e59937;padding-top:16px;padding-right:32px;padding-bottom:16px;padding-left:32px\">Listen Now</a></div>\n</div>\n\n\n\n<div style=\"height:7.5vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:6343:\"<!-- wp:cover {\"customOverlayColor\":\"#36220c\",\"contentPosition\":\"top center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-center\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#36220c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"3vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"stretch\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\"><!-- wp:cover {\"url\":\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\",\"id\":334,\"dimRatio\":50,\"minHeight\":75,\"minHeightUnit\":\"vh\",\"contentPosition\":\"top right\",\"isDark\":false,\"style\":{\"layout\":{\"selfStretch\":\"fill\"},\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}},\"color\":{\"duotone\":[\"rgb(137, 75, 0)\",\"rgb(210, 210, 210)\"]}}} -->\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-top-right\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:75vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"140px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-6px\"},\"color\":{\"text\":\"#e5683a\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:140px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">Wardell</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"130px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-6px\"},\"color\":{\"text\":\"#e5683a\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:130px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">gray</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"},\"color\":{\"text\":\"#d09c9c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#d09c9c;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">Plays</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"0.8\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:0.8;text-transform:uppercase\">Bebop &amp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">SWING</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"420px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"bottom\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"18px\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1.7\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">Wardell Gray was born in Oklahoma City, the youngest of four children. His early childhood years were spent in Oklahoma, before moving with his family to Detroit in 1929. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"18px\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1.7\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">In early 1935, Gray began attending Northeastern High School, and then transferred to Cass Technical High School, which is noted for having Donald Byrd, Lucky Thompson and Al McKibbon as alumni. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#e59937\"},\"border\":{\"radius\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"16px\",\"right\":\"32px\",\"bottom\":\"16px\",\"left\":\"32px\"}},\"typography\":{\"fontSize\":\"16px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:700;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color wp-element-button\" style=\"border-radius:0px;color:#e59937;padding-top:16px;padding-right:32px;padding-bottom:16px;padding-left:32px\">Listen Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"7.5vw\"} -->\n<div style=\"height:7.5vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:309935;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Centered image with two-tone background color\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1278:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-11 is-layout-constrained wp-container-12 wp-block-group-is-layout-constrained\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large is-style-default wp-duotone-000000-ffffff-10\"><img decoding=\"async\" src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:18:\"Gradient, Two-Tone\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:57:\"core/cover,core/group,core/heading,core/image,core/spacer\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2134:\"<!-- wp:cover {\"minHeight\":66,\"minHeightUnit\":\"vh\",\"customGradient\":\"linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"600px\",\"wideSize\":\"1200px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"#ffffff\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"50px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"32px\",\"lineHeight\":\"1\"},\"spacing\":{\"padding\":{\"left\":\"32px\"}}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:309925;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:43:\"Fullwidth Dark Banner with Heading Top Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1031:\"\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-14 is-vertical is-nowrap is-layout-flex wp-container-15 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:16:\"Jazz, Fulllwidth\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1697:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\",\"id\":333,\"dimRatio\":90,\"customOverlayColor\":\"#141414\",\"focalPoint\":{\"x\":0.5,\"y\":0},\"minHeight\":50,\"minHeightUnit\":\"vh\",\"contentPosition\":\"top left\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"fontStyle\":\"italic\",\"fontWeight\":\"900\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\",\"textTransform\":\"none\"},\"color\":{\"text\":\"#d8a557\"}},\"fontFamily\":\"source-serif-pro\"} -->\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:309230;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:44:\"Fullwidth cover with repeating gradient text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1724:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-36345d-abaaaa-19\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-nowrap is-layout-flex wp-container-17 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:48:\"Fullwidth, Background Image, Gradient, Uppercase\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3135:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\",\"id\":334,\"dimRatio\":60,\"customOverlayColor\":\"#c2b7a4\",\"focalPoint\":{\"x\":0.5,\"y\":0.05},\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#36345d\",\"#abaaaa\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#c8c4d3\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#ac94b2\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#71689c\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#444178\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:309224;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:72:\"Fullwidth, vertically aligned headline on right with description on left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2130:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flex wp-container-26 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-22 is-layout-flow wp-container-23 wp-block-group-is-layout-flow\">\n<p class=\"wp-container-content-20\" style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let &#8217;em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-24 is-layout-flow wp-container-25 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>&#8216;EM<br>Roll</p>\n\n\n\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:60:\"vertically, bold, jazz, shop, store, headline, hero, product\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:61:\"core/button,core/buttons,core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3726:\"<!-- wp:cover {\"customOverlayColor\":\"#e68b14\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"320px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"330px\"},\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"1.4\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"}}} -->\n<p style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let \'em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"14px\",\"bottom\":\"14px\",\"left\":\"36px\",\"right\":\"36px\"}},\"border\":{\"radius\":\"0px\",\"top\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"right\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"bottom\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"left\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"}}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>\'EM<br>Roll</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:309236;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:60:\"Fullwidth headline with links and gradient offset background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1893:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-space-between is-layout-flex wp-container-33 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-28 is-layout-flow wp-container-29 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color wp-elements-52dc92f2ee4b8dfde042239a7e68e30d\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-31 is-layout-flow wp-container-32 wp-block-group-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-30 wp-block-group-is-layout-flex\">\n<p class=\"has-white-color has-text-color has-link-color wp-elements-c8902903bdf5ea1baed310a565cbd10e\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n\n\n\n<p class=\"has-white-color has-text-color has-link-color wp-elements-669af571686ebf2235f18cd2403659b5\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More → </p>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:41:\"Offset, Gradient, Jazz, Headline, Feature\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3195:\"<!-- wp:cover {\"customGradient\":\"linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"5vw\",\"bottom\":\"48px\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"172px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.7\",\"letterSpacing\":\"-10px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"400px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More → </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"260px\"} -->\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:308937;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Heading, Paragraph, Button with Two Images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2550:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-layout-flex wp-container-45 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group alignwide wp-container-content-36 is-content-justification-left is-layout-constrained wp-container-37 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-35 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-44 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-40 is-layout-flow wp-block-group-is-layout-flow\">\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large wp-container-content-38 wp-duotone-rgb000-rgb21788120-39\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large wp-container-content-42 wp-duotone-rgb000-rgb21788120-43\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:4102:\"<!-- wp:cover {\"customOverlayColor\":\"#eb4c77\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"6vw\",\"right\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"none\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"0.9\"}},\"textColor\":\"contrast\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"contrast\",\"textColor\":\"base\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"8vw\"} -->\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:308949;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Bold sale banner with geometric background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1663:\"\n<div class=\"wp-block-cover alignfull wp-duotone-rgb4448102-ffb23d-50\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flow wp-container-48 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-47 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:43:\"store, shop, coupon, jazz, background image\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2819:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\",\"id\":334,\"dimRatio\":90,\"customOverlayColor\":\"#2c3066\",\"minHeight\":50,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(44, 48, 102)\",\"#ffb23d\"]}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ffb23d\",\"text\":\"#2c3066\"},\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"48px\",\"bottom\":\"32px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"20px\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:308924;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Offset bold paragraph text with varying opacity\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1592:\"\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-51 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n\n\n\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature&#8217;s best…</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3052:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"white\"} -->\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"700px\",\"contentSize\":\"700px\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"120px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffff61\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffff73\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffffad\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature\'s best…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffffd1\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"162px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#fffffff5\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:308916;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Offset text with a brutalist design vibe\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1389:\"\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-53 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n\n\n\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2631:\"<!-- wp:cover {\"customOverlayColor\":\"#ffb43c\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"black\"} -->\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"1200px\",\"contentSize\":\"800px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"140px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"200\",\"letterSpacing\":\"0px\",\"lineHeight\":\"0.9\"},\"color\":{\"text\":\"#a65a00\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:308901;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Fullscreen image with right content area\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2040:\"\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-flex wp-container-59 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large wp-container-content-55\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n\n\n\n<div class=\"wp-block-group alignwide wp-container-content-57 is-content-justification-left is-layout-constrained wp-container-58 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-56 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3261:\"<!-- wp:cover {\"customOverlayColor\":\"#376a23\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"80px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"700\",\"lineHeight\":\"1.0\"}},\"textColor\":\"black\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:308871;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:46:\"Cover Image with Bold Heading and Button, Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1525:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-094850-f9644e-64\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-61 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-62 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2443:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#094850\",\"#f9644e\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"75%\",\"justifyContent\":\"left\",\"wideSize\":\"75%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:308868;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Image with Bold Heading and Button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1533:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-rgb4247103-rgb21419442-68\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-65 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-nowrap is-layout-flex wp-container-66 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2449:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(42, 47, 103)\",\"rgb(214, 194, 42)\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"80%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:303828;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:30:\"Fullscreen cover image gallery\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:895:\"\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-69 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:43:\"gallery, images, columns, background, cover\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:32:\"core/cover,core/group,core/image\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1259:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:277265;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth posts with uppercase titles\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6991:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><ul style=\"text-transform:none;\" class=\"wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-2071 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-72 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-71 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-06T21:31:35+00:00\">Jul 6, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-75 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/jupiter/\" target=\"_self\" >Jupiter</a></h2></div>\n\n</li><li class=\"wp-block-post post-2069 post type-post status-publish format-standard hentry category-space tag-stars\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-77 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-76 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-06T21:30:31+00:00\">Jul 6, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-80 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/star-clusters-in-hurcules/\" target=\"_self\" >Star Clusters in Hurcules</a></h2></div>\n\n</li><li class=\"wp-block-post post-2067 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-82 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-81 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-05T21:29:00+00:00\">Jul 5, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-85 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/saturn/\" target=\"_self\" >Saturn</a></h2></div>\n\n</li></ul></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"><nav class=\"wp-block-query-pagination is-content-justification-left is-nowrap is-layout-flex wp-container-88 wp-block-query-pagination-is-layout-flex\" aria-label=\"Pagination\">\n\n\n<a href=\"/patterns/wp-json/wp/v2/wporg-pattern?page=1&#038;per_page=100&#038;order=desc&#038;orderby=date&#038;locale=en_US&#038;wp-version=6.3&#038;pattern-keywords=11&#038;_fields=id%2Ctitle%2Ccontent%2Cmeta%2Ccategory_slugs%2Ckeyword_slugs%2Cpattern_content&#038;query-31-page=2\" style=\"text-transform:uppercase;\" class=\"wp-block-query-pagination-next has-small-font-size\">Next</a>\n</nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:30:\"star, posts, loop, blog, index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and start accents.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:182:\"core/group,core/paragraph,core/post-date,core/post-template,core/post-terms,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3502:\"<!-- wp:query {\"queryId\":31,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:post-template {\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"1px\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"right\":\"16px\",\"bottom\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>✴︎</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"M j, Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\",\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-terms {\"term\":\"category\",\"prefix\":\"✴︎ \",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"bottom\":\"var:preset|spacing|70\",\"right\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><!-- wp:post-title {\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.1\",\"textTransform\":\"uppercase\",\"fontSize\":\"5.2rem\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"right\":\"16px\",\"left\":\"16px\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<!-- wp:query-pagination-previous {\"label\":\"Previous\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:query-pagination-next {\"label\":\"Next\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:15;O:8:\"stdClass\":7:{s:2:\"id\";i:277127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Fullwidth posts titles with dates\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6509:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><ul style=\"text-transform:none;\" class=\"alignfull wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-2071 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-93 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-91 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-06T21:31:35+00:00\">07.6</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-06T21:31:35+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/jupiter/\" target=\"_self\" >Jupiter</a></h2></div>\n\n</li><li class=\"wp-block-post post-2069 post type-post status-publish format-standard hentry category-space tag-stars\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-96 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-94 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-06T21:30:31+00:00\">07.6</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-06T21:30:31+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/star-clusters-in-hurcules/\" target=\"_self\" >Star Clusters in Hurcules</a></h2></div>\n\n</li><li class=\"wp-block-post post-2067 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-99 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-97 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-05T21:29:00+00:00\">07.5</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-05T21:29:00+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/saturn/\" target=\"_self\" >Saturn</a></h2></div>\n\n</li></ul></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><nav class=\"wp-block-query-pagination is-content-justification-space-between is-nowrap is-layout-flex wp-container-102 wp-block-query-pagination-is-layout-flex\" aria-label=\"Pagination\">\n\n\n<a href=\"/patterns/wp-json/wp/v2/wporg-pattern?page=1&#038;per_page=100&#038;order=desc&#038;orderby=date&#038;locale=en_US&#038;wp-version=6.3&#038;pattern-keywords=11&#038;_fields=id%2Ctitle%2Ccontent%2Cmeta%2Ccategory_slugs%2Ckeyword_slugs%2Cpattern_content&#038;query-1-page=2\" style=\"font-size:2rem;font-style:normal;font-weight:600;text-transform:uppercase;letter-spacing:1px;\" class=\"wp-block-query-pagination-next\">Next Page</a>\n</nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:31:\"Posts, Query, Loop, Blog, Index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and numeral dates.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:151:\"core/group,core/post-date,core/post-template,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3583:\"<!-- wp:query {\"queryId\":1,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:post-template {\"align\":\"full\",\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\",\"padding\":{\"bottom\":\"var:preset|spacing|50\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"4px\"}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"m.j\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /-->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-title {\"isLink\":true,\"style\":{\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"4.6rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\"}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<!-- wp:query-pagination-previous {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n\n<!-- wp:query-pagination-next {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:16;O:8:\"stdClass\":7:{s:2:\"id\";i:229101;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Text-only header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3727:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-108 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-107 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-106\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-106\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-106-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:53:\"Header with site title, tagline and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:60:\"core/group,core/navigation,core/site-tagline,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:966:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:17;O:8:\"stdClass\":7:{s:2:\"id\";i:229105;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Simple header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4296:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-7479bd1e590756c4aa927894dbdbef4e is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-114 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-111 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-110 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline has-small-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n</div>\n\n\n<nav class=\"has-small-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-small-font-size is-content-justification-right is-layout-flex wp-container-113 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-112\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-112\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-112-content\">\n							<ul class=\"wp-block-navigation__container has-small-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:92:\"Header with site logo, title and tagline on the left and with navigation links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/navigation,core/site-logo,core/site-tagline,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1389:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:18;O:8:\"stdClass\":7:{s:2:\"id\";i:229111;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:36:\"Fullwidth site title and menu button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3499:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-e0434f7bbe3c9d87e2f1562e19b734da is-content-justification-space-between is-layout-flex wp-container-118 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-117 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open always-shown\" data-micromodal-trigger=\"modal-116\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container hidden-by-default \" style=\"\" id=\"modal-116\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-116-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Header with site title and a hamburger menu button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:794:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title /-->\n\n<!-- wp:navigation {\"overlayMenu\":\"always\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\";}i:19;O:8:\"stdClass\":7:{s:2:\"id\";i:229116;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Fullwidth header with hero image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4827:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-123 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group is-layout-flex wp-container-120 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-119 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title has-medium-font-size wp-elements-234e57400cf5587740bb7caa261d6fc4\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n</div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-122 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-121\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-121\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-121-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Header on a white background followed by a full-width hero image.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2566:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":0,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":40,\"minHeightUnit\":\"vw\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:20;O:8:\"stdClass\":7:{s:2:\"id\";i:229092;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Header inside full-width background image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4895:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color wp-elements-a5c55c350363e1349d710a58148fd7b6 is-content-justification-space-between is-layout-flex wp-container-129 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size is-style-default wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color has-text-color has-white-color wp-block-site-title has-medium-font-size wp-elements-e24c80986e13ab3d929b38d6b46e3019\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"has-text-color has-white-color is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-128 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-127\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-127\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-127-content\">\n							<ul class=\"wp-block-navigation__container has-text-color has-white-color is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:100:\"Simple header with logo, site title, navigation and a full-width background image with dark overlay.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2554:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":50,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":50,\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"textColor\":\"base\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"className\":\"is-style-default\"} /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"textColor\":\"white\",\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"textColor\":\"white\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"33vw\"} -->\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:21;O:8:\"stdClass\":7:{s:2:\"id\";i:229097;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Simple header with dark background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3967:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-4956719e1d36ae31d9fb9c185b0a148a is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-135 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-block-site-title wp-elements-f1e98d6c897e424c7d4e8232ded39f0a\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-134 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-133\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-133\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-133-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:76:\"Simple header with logo, site title, navigation links and a dark background.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1232:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:22;O:8:\"stdClass\":7:{s:2:\"id\";i:229080;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:25:\"Centered header with logo\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3794:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-vertical is-content-justification-center is-layout-flex wp-container-139 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color has-text-color has-contrast-color wp-block-site-title has-large-font-size wp-elements-9728cce79011b64628d7f6beff066787\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"is-responsive items-justified-center is-fallback wp-block-navigation is-content-justification-center is-layout-flex wp-container-138 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-137\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-137\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-137-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-center is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Center aligned header with logo, site title and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:926:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:23;O:8:\"stdClass\":7:{s:2:\"id\";i:229084;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth header with large font size\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3627:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-4b5a1e7a31f9f44eaeb3ab45e5ae60f1 is-content-justification-space-between is-layout-flex wp-container-143 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"has-large-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-large-font-size is-content-justification-right is-layout-flex wp-container-142 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-141\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-141\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-141-content\">\n							<ul class=\"wp-block-navigation__container has-large-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-large-font-size\"><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:80:\"Header with a large site title and navigation links in the same large font size.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:811:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title {\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"large\"} /--></div>\n<!-- /wp:group -->\";}i:24;O:8:\"stdClass\":7:{s:2:\"id\";i:229088;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Simple header\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3830:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-147 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-144 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-146 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-145\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-145\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-145-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Simple header with logo, site title and navigation.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1021:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:25;O:8:\"stdClass\":7:{s:2:\"id\";i:229123;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4180:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-151 wp-block-group-is-layout-flex\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-150 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-149 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:82:\"Centered footer with the sentence \"Proudly powered by WordPress\" and social links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:25:\"core/group,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1495:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"30vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"8px\",\"left\":\"8px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:26;O:8:\"stdClass\":7:{s:2:\"id\";i:229127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Footer with search, site title, and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2962:\"\n<div class=\"wp-block-group alignfull has-background is-layout-constrained wp-block-group-is-layout-constrained\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-158 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-153 is-content-justification-left is-layout-constrained wp-container-154 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n\n\n<form role=\"search\" method=\"get\" action=\"https://wordpress.org/patterns/\" class=\"wp-block-search__button-outside wp-block-search__icon-button wp-block-search\"><label class=\"wp-block-search__label screen-reader-text\" for=\"wp-block-search__input-152\" >Search</label><div class=\"wp-block-search__inside-wrapper \"  style=\"width: 100%\"><input class=\"wp-block-search__input\" id=\"wp-block-search__input-152\" placeholder=\"\" value=\"\" type=\"search\" name=\"s\" required  style=\"border-width: 1px\"/><button aria-label=\"Search\" class=\"wp-block-search__button has-icon wp-element-button\" type=\"submit\"  style=\"border-width: 1px\"><svg class=\"search-icon\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\">\n					<path d=\"M13 5c-3.3 0-6 2.7-6 6 0 1.4.5 2.7 1.3 3.7l-3.8 3.8 1.1 1.1 3.8-3.8c1 .8 2.3 1.3 3.7 1.3 3.3 0 6-2.7 6-6S16.3 5 13 5zm0 10.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5z\"></path>\n				</svg></button></div></form></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-157 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-156 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n\n\n\n<div class=\"wp-block-group has-small-font-size is-vertical is-content-justification-left is-layout-flex wp-container-155 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-160 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:88:\"Footer with search field and site title on the left, and small credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:65:\"core/group,core/paragraph,core/search,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3254:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\"}},\"color\":{\"background\":\"#00000008\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|60\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"style\":{\"border\":{\"width\":\"1px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":[]},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group has-small-font-size\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:27;O:8:\"stdClass\":7:{s:2:\"id\";i:229131;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with site title and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:840:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-163 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with site title on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/paragraph,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1095:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:28;O:8:\"stdClass\":7:{s:2:\"id\";i:229135;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with navigation and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3733:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-168 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><nav class=\"has-small-font-size is-responsive items-justified-left is-fallback wp-block-navigation has-small-font-size is-content-justification-left is-layout-flex wp-container-166 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-165\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-165\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-165-content\">\n							<ul class=\"wp-block-navigation__container has-small-font-size is-responsive items-justified-left is-fallback wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with navigation on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/navigation,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1174:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"left\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:29;O:8:\"stdClass\":7:{s:2:\"id\";i:229139;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:56:\"Fullwidth footer with background color and three columns\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2963:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-8d0170a0199cafe7fbcba6c0b4dac464 is-vertical is-content-justification-stretch is-layout-flex wp-container-178 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-columns alignwide has-small-font-size is-layout-flex wp-container-176 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Location</p>\n\n\n\n<p class=\"has-text-align-center\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-center is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size is-content-justification-center is-nowrap is-layout-flex wp-container-172 wp-block-navigation-is-layout-flex\" aria-label=\"\"><ul class=\"wp-block-navigation__container has-small-font-size items-justified-center is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Follow us</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-layout-flex wp-container-174 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-center is-layout-flex wp-container-177 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:57:\"Text-only footer with background color and three columns.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:78:\"core/column,core/columns,core/group,core/navigation,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3225:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"blockGap\":\"var:preset|spacing|30\"},\"dimensions\":{\"minHeight\":\"40vh\"}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:columns {\"align\":\"wide\",\"fontSize\":\"small\"} -->\n<div class=\"wp-block-columns alignwide has-small-font-size\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Location</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Follow us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:30;O:8:\"stdClass\":7:{s:2:\"id\";i:229143;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4120:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-180 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><div style=\"margin-bottom:6px;\" class=\"is-default-size aligncenter wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-179 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-facebook  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Facebook</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-wordpress  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12.158,12.786L9.46,20.625c0.806,0.237,1.657,0.366,2.54,0.366c1.047,0,2.051-0.181,2.986-0.51 c-0.024-0.038-0.046-0.079-0.065-0.124L12.158,12.786z M3.009,12c0,3.559,2.068,6.634,5.067,8.092L3.788,8.341 C3.289,9.459,3.009,10.696,3.009,12z M18.069,11.546c0-1.112-0.399-1.881-0.741-2.48c-0.456-0.741-0.883-1.368-0.883-2.109 c0-0.826,0.627-1.596,1.51-1.596c0.04,0,0.078,0.005,0.116,0.007C16.472,3.904,14.34,3.009,12,3.009 c-3.141,0-5.904,1.612-7.512,4.052c0.211,0.007,0.41,0.011,0.579,0.011c0.94,0,2.396-0.114,2.396-0.114 C7.947,6.93,8.004,7.642,7.52,7.699c0,0-0.487,0.057-1.029,0.085l3.274,9.739l1.968-5.901l-1.401-3.838 C9.848,7.756,9.389,7.699,9.389,7.699C8.904,7.67,8.961,6.93,9.446,6.958c0,0,1.484,0.114,2.368,0.114 c0.94,0,2.397-0.114,2.397-0.114c0.485-0.028,0.542,0.684,0.057,0.741c0,0-0.488,0.057-1.029,0.085l3.249,9.665l0.897-2.996 C17.841,13.284,18.069,12.316,18.069,11.546z M19.889,7.686c0.039,0.286,0.06,0.593,0.06,0.924c0,0.912-0.171,1.938-0.684,3.22 l-2.746,7.94c2.673-1.558,4.47-4.454,4.47-7.771C20.991,10.436,20.591,8.967,19.889,7.686z M12,22C6.486,22,2,17.514,2,12 C2,6.486,6.486,2,12,2c5.514,0,10,4.486,10,10C22,17.514,17.514,22,12,22z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">WordPress</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:71:\"Footer with centered site title, tagline, social links and credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/paragraph,core/site-logo,core/social-link,core/social-links\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1532:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"40vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:site-logo {\"align\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"6px\"}}}} /-->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"medium\"} -->\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"12px\",\"left\":\"12px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"wordpress\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:31;O:8:\"stdClass\":7:{s:2:\"id\";i:229147;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:52:\"Fullwidth footer with navigation, credit, and social\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4597:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignfull has-small-font-size is-content-justification-space-between is-nowrap is-layout-flex wp-container-186 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size wp-container-content-181\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n\n<div class=\"wp-block-group wp-container-content-182 is-vertical is-content-justification-center is-layout-flex wp-container-183 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only wp-container-content-184 is-content-justification-right is-nowrap is-layout-flex wp-container-185 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:87:\"Footer with site title on the left, credit in the middle and social links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:76:\"core/group,core/paragraph,core/site-title,core/social-link,core/social-links\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1869:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"nowrap\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group alignfull has-small-font-size\"><!-- wp:site-title {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"12px\"}},\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:32;O:8:\"stdClass\":7:{s:2:\"id\";i:229151;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:19:\"Left-aligned footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2835:\"\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-196 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group wp-container-content-188 is-vertical is-layout-flex wp-container-189 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n\n<p class=\"has-text-align-left\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-layout-flex wp-container-195 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-192 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-left is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size is-content-justification-left is-nowrap is-layout-flex wp-container-191 wp-block-navigation-is-layout-flex\" aria-label=\"\"><ul class=\"wp-block-navigation__container has-small-font-size items-justified-left is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-194 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\">Social</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-left is-layout-flex wp-container-193 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:44:\"Left-aligned footer with just a credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:69:\"core/group,core/navigation,core/paragraph,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2939:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"medium\"} /-->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|50\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:33;O:8:\"stdClass\":7:{s:2:\"id\";i:201;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Three columns with offset images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1330:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-200 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:45%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n\n\n\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:33:\"Three columns with offset images.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:47:\"core/column,core/columns,core/image,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1753:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:spacer {\"height\":500} -->\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":150} -->\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"45%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":285} -->\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:34;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1078:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-204 wp-block-columns-is-layout-flex\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:35;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3496:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-205 wp-block-group-is-layout-flex\" style=\"padding-right:0;padding-left:0\">\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n</div>\n\n\n\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-vertical is-nowrap is-layout-flex wp-container-213 wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-209 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-212 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:69%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:5:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:7:\"gallery\";i:3;s:6:\"images\";i:4;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f5eac1\"},\"spacing\":{\"padding\":{\"top\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\",\"right\":\"6vw\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"16px\"}},\"anchor\":\"ecosystem\"} -->\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"0.9\",\"fontSize\":\"6vw\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"1vw\"} -->\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"3vw\",\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"3vw\",\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"69%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:69%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:36;O:8:\"stdClass\":7:{s:2:\"id\";i:197;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:39:\"Two columns of text with offset heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2240:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f2f0e9\">\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-217 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-221 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n</div>\n</div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:43:\"Two columns of text with an offset heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:77:\"core/column,core/columns,core/group,core/paragraph,core/separator,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2837:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f2f0e9\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f2f0e9\"><!-- wp:spacer {\"height\":70} -->\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"30px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":40} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:37;O:8:\"stdClass\":7:{s:2:\"id\";i:196;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Media and text in a full height container\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1445:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What&#8217;s the problem?</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n</div>\n</div></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Media and text block with image to the left and text and button to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:79:\"core/button,core/buttons,core/cover,core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2015:\"<!-- wp:cover {\"customOverlayColor\":\"#ffffff\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:media-text {\"mediaLink\":\"https://s.w.org/images/core/5.8/soil.jpg\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"imageFill\":true} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"32px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What\'s the problem?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:media-text --></div></div>\n<!-- /wp:cover -->\";}i:38;O:8:\"stdClass\":7:{s:2:\"id\";i:195;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Media and text with image on the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:719:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the right and text to the left.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1155:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaLink\":\"#\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"17px\"},\"color\":{\"text\":\"#636363\"}}} -->\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n<!-- /wp:paragraph --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:39;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:40;O:8:\"stdClass\":7:{s:2:\"id\";i:186;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with text and a button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1508:\"\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-228 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:60%\">\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:62:\"Large header with background image and text and button on top.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:88:\"core/button,core/buttons,core/column,core/columns,core/cover,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2053:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/art-01.jpg\",\"hasParallax\":true,\"dimRatio\":40,\"customOverlayColor\":\"#000000\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.2\"}},\"className\":\"alignwide has-white-color has-text-color\"} -->\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"60%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:41;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1321:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-232 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:42;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}i:43;O:8:\"stdClass\":7:{s:2:\"id\";i:27;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Quote\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:688:\"\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n\n\n\n<figure class=\"wp-block-image aligncenter size-large is-resized is-style-rounded\"><img decoding=\"async\" loading=\"lazy\" src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\">\n<p>&#8220;Contributing makes me feel like I&#8217;m being useful to the planet.&#8221;</p>\n<cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/quote\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:51:\"core/image,core/paragraph,core/quote,core/separator\";}s:14:\"category_slugs\";a:2:{i:0;s:12:\"testimonials\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1102:\"<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n<!-- /wp:separator -->\n\n<!-- wp:image {\"align\":\"center\",\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized is-style-rounded\"><img src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} -->\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\"><!-- wp:paragraph -->\n<p>\"Contributing makes me feel like I\'m being useful to the planet.\"</p>\n<!-- /wp:paragraph --><cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n<!-- /wp:separator -->\";}i:44;O:8:\"stdClass\":7:{s:2:\"id\";i:29;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Two columns of text and title\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1518:\"\n<h2 class=\"wp-block-heading\" style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-236 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband&#8217;s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:47:\"Two columns of text preceded by a long heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1711:\"<!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":38,\"lineHeight\":\"1.4\"}}} -->\n<h2 style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband\'s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:45;O:8:\"stdClass\":7:{s:2:\"id\";i:19;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:23:\"Two images side by side\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:572:\"\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped wp-block-gallery-237 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n</figure>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:41:\"An image gallery with two example images.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:23:\"core/gallery,core/image\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:704:\"<!-- wp:gallery {\"linkTo\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\";}}','no'),(286,'_site_transient_timeout_wp_remote_block_patterns_9878e052535700697ff756158aa990b2','1691651165','no'),(287,'_site_transient_wp_remote_block_patterns_9878e052535700697ff756158aa990b2','a:14:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:207567;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:11:\"Link in Bio\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6630:\"\n<div class=\"wp-block-group has-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"has-text-align-center wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"has-text-align-center wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color is-content-justification-center is-layout-flex wp-container-2 wp-block-social-links-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-instagram has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-bandcamp has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M15.27 17.289 3 17.289 8.73 6.711 21 6.711 15.27 17.289\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Bandcamp</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitter has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitch has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitch</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:116:\"core/button,core/buttons,core/group,core/site-tagline,core/site-title,core/social-link,core/social-links,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2665:\"<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|80\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|80\",\"left\":\"0\"}}},\"backgroundColor\":\"white\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group has-white-background-color has-background\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><!-- wp:site-title {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"textAlign\":\"center\"} /-->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:social-links {\"iconColor\":\"black\",\"iconColorValue\":\"#000000\",\"iconBackgroundColor\":\"white\",\"iconBackgroundColorValue\":\"#ffffff\",\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|60\",\"bottom\":\"var:preset|spacing|60\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"bandcamp\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitch\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:732;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Simple call to action\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:961:\"\n<div class=\"wp-block-group alignfull has-text-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#ffffff;color:#000000\">\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n\n\n\n<h2 class=\"has-text-align-center wp-block-heading\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-4 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n</div>\n\n\n\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:89:\"A container with a white background. Inside is a centered paragraph, heading, and button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/group,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"buttons\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1506:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-group alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"lineHeight\":\".9\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":59,\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"has-text-align-center\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50,\"style\":{\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"50px\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:678;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Three column pricing table\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3717:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-12 wp-block-columns-is-layout-flex\" style=\"margin-bottom:0\">\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-2ae1b943d87d6b5cbc827b8e7de5c343 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for one adult</li>\n\n\n\n<li>One free ticket per special exhibition</li>\n\n\n\n<li>Two single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-6 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-c860b6260b3b3b7bae640a65db9c9aec is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Four free tickets per special exhibition</li>\n\n\n\n<li>Four single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-8 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-4a86cd4fa1de9230a73a90c7ad305893 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Five free tickets per special exhibition</li>\n\n\n\n<li>Six single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-10 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:272:\"Three equal-width columns set up as a pricing table. The left column has a yellow background, the middle column has a light purple background, and the right column has a light blue background. Each column contains a heading, subheading, separator, list, and then a button.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:117:\"core/button,core/buttons,core/column,core/columns,core/heading,core/list,core/list-item,core/paragraph,core/separator\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:6125:\"<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"margin-bottom:0\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#ffe97d\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"single\"} -->\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"style\":{\"color\":{\"background\":\"#000000\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for one adult</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>One free ticket per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Two single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#d1d1e1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"family\"} -->\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#c0ebf1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"patron\"} -->\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Five free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Six single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:669;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Image and quote on a background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2281:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-1-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-1-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-1-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-1.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Terry a O&#8217;Neal</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-half-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-half-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-half-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-half.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Molière</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:221:\"Two media and text blocks. The top one has a pale green background. The text is on the left and contains a quote, and the image is on the right. The next block underneath has the image on the left, and quote on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2404:\"<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":5263,\"mediaLink\":\"https://wordpress.org/patterns/pattern/image-and-quote-on-a-background/pear-3/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#f1f5c7\"}}} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Terry a O\'Neal</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:media-text {\"mediaId\":673,\"mediaLink\":\"https://wordpress.org/patterns/pear-half/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#fffdea\"}}} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Molière</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:591;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Event\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1687:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color wp-elements-5fce4e677a9b9d7d0cae0196c9d74d97\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group has-link-color wp-elements-71b4a847bbd96313422a1303e9ba41f3 is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n\n\n\n<p class=\"has-text-color has-link-color wp-elements-0860918d5b16b9e1778b1966b333b980\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n</div>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1536x1536.jpg 1536w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1.jpg 1572w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:54:\"core/group,core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1617:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaId\":590,\"mediaLink\":\"https://wordpress.org/patterns/image-from-rawpixel-id-430289-jpeg-1/\",\"mediaType\":\"image\",\"mediaWidth\":60,\"verticalAlignment\":\"top\",\"style\":{\"color\":{\"background\":\"#121c1c\",\"text\":\"#fffdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontWeight\":\"700\",\"fontSize\":\"48px\",\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}},\"color\":{\"text\":\"#fffdc7\"}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" /></figure></div>\n<!-- /wp:media-text -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:573;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Image on solid color with description\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1830:\"\n<div class=\"wp-block-columns alignfull is-layout-flex wp-container-21 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img decoding=\"async\" loading=\"lazy\" width=\"263\" height=\"300\" src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" srcset=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg 263w, https://s.w.org/patterns/files/2021/06/wire-sculpture-898x1024.jpg 898w, https://s.w.org/patterns/files/2021/06/wire-sculpture-768x875.jpg 768w, https://s.w.org/patterns/files/2021/06/wire-sculpture-1347x1536.jpg 1347w, https://s.w.org/patterns/files/2021/06/wire-sculpture.jpg 1658w\" sizes=\"(max-width: 263px) 100vw, 263px\" /></figure></div>\n</div></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-19 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:320px\">\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n\n\n\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:38:\"Image on solid color with description.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:61:\"core/column,core/columns,core/cover,core/image,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1826:\"<!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:cover {\"customOverlayColor\":\"#f6f6f6\",\"minHeight\":600} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"center\",\"id\":571,\"sizeSlug\":\"medium\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" /></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"1em\",\"right\":\"1em\",\"bottom\":\"1em\",\"left\":\"1em\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"320px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:320px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:526;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Offset images with descriptions\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2907:\"\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top is-layout-flex wp-container-31 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-24 is-vertical is-content-justification-left is-nowrap is-layout-flex wp-container-25 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<figure class=\"wp-block-image size-large wp-container-content-22\"><img decoding=\"async\" loading=\"lazy\" width=\"793\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" srcset=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg 793w, https://s.w.org/patterns/files/2021/06/Iris-232x300.jpg 232w, https://s.w.org/patterns/files/2021/06/Iris-768x992.jpg 768w, https://s.w.org/patterns/files/2021/06/Iris-1189x1536.jpg 1189w, https://s.w.org/patterns/files/2021/06/Iris-1586x2048.jpg 1586w, https://s.w.org/patterns/files/2021/06/Iris.jpg 1920w\" sizes=\"(max-width: 793px) 100vw, 793px\" /></figure>\n\n\n\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-23 wp-block-group-is-layout-flex\">\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n\n\n\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-28 is-vertical is-layout-flex wp-container-29 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-27 wp-block-group-is-layout-flex\">\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n\n\n\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img decoding=\"async\" loading=\"lazy\" width=\"707\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" srcset=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg 707w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-207x300.jpg 207w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-768x1112.jpg 768w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1061x1536.jpg 1061w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1414x2048.jpg 1414w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-scaled.jpg 1768w\" sizes=\"(max-width: 707px) 100vw, 707px\" /></figure>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:58:\"Two offset columns with images and titles within each one.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:73:\"core/column,core/columns,core/group,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2930:\"<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:image {\"id\":525,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"id\":524,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:521;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Image with description below and to the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1665:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-36 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1.jpg 1510w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-39 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n</div>\n</div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:46:\"Image with description below and to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:50:\"core/column,core/columns,core/image,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1241:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":522,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:502;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Event details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1684:\"\n<figure class=\"wp-block-image alignwide size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"2560\" height=\"1227\" src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" srcset=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg 2560w, https://s.w.org/patterns/files/2021/06/Group-17-300x144.jpg 300w, https://s.w.org/patterns/files/2021/06/Group-17-1024x491.jpg 1024w, https://s.w.org/patterns/files/2021/06/Group-17-768x368.jpg 768w, https://s.w.org/patterns/files/2021/06/Group-17-1536x736.jpg 1536w, https://s.w.org/patterns/files/2021/06/Group-17-2048x981.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" /></figure>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-44 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:14:\"Event details.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/column,core/columns,core/image,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1642:\"<!-- wp:image {\"align\":\"wide\",\"id\":501,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"style\":{\"color\":{\"background\":\"#262626\",\"text\":\"#efefef\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1077:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-48 wp-block-columns-is-layout-flex\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3492:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-49 wp-block-group-is-layout-flex\" style=\"padding-right:0;padding-left:0\">\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n</div>\n\n\n\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-vertical is-nowrap is-layout-flex wp-container-57 wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-53 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-56 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:69%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:5:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:7:\"gallery\";i:3;s:6:\"images\";i:4;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f5eac1\"},\"spacing\":{\"padding\":{\"top\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\",\"right\":\"6vw\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"16px\"}},\"anchor\":\"ecosystem\"} -->\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"0.9\",\"fontSize\":\"6vw\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"1vw\"} -->\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"3vw\",\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"3vw\",\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"69%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:69%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1320:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-61 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}}','no'),(288,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1691659305','no'),(289,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:6134;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4820;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2789;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2680;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2056;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1924;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1912;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1653;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1567;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1562;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1549;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1514;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1504;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1491;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1373;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1316;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1277;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1176;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1156;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1152;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1068;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1028;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:1001;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:969;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:906;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:904;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:883;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:881;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:877;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:875;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:871;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:838;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:815;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:794;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:782;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:779;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:775;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:763;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:747;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:732;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:730;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:729;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:727;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:691;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:685;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:684;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:677;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:668;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:634;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:628;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:619;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:616;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:610;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:607;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:598;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:595;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:592;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:591;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:578;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:573;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:570;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:569;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:568;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:559;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:557;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:543;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:541;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:534;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:533;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:532;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:532;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:521;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:511;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:510;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:509;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:509;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:489;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:480;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:476;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:469;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:450;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:448;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:448;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:437;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:432;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:426;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:426;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:426;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:424;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:422;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:422;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:420;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:420;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:413;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:409;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:400;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:396;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:394;}s:8:\"checkout\";a:3:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:394;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:390;}}','no'),(292,'_transient_timeout_wpstream_woo_movie_category_values_label','1691662955','no'),(293,'_transient_wpstream_woo_movie_category_values_label','a:0:{}','no'),(294,'_transient_timeout_wpstream_woo_movie_category_values','1691662955','no'),(295,'_transient_wpstream_woo_movie_category_values','','no'),(296,'_transient_timeout_wpstream_woo_actors_category_values_label','1691662955','no'),(297,'_transient_wpstream_woo_actors_category_values_label','a:0:{}','no'),(298,'_transient_timeout_wpstream_woo_actors_category_values','1691662955','no'),(299,'_transient_wpstream_woo_actors_category_values','','no'),(300,'_transient_timeout_wpstream_woo_product_cat_label','1691662955','no'),(301,'_transient_wpstream_woo_product_cat_label','a:0:{}','no'),(302,'_transient_timeout_wpstream_woo_product_cat','1691662955','no'),(303,'_transient_wpstream_woo_product_cat','','no'),(304,'_transient_timeout_wpstream_woo_movie_rating_category_values_label','1691662955','no'),(305,'_transient_wpstream_woo_movie_rating_category_values_label','a:0:{}','no'),(306,'_transient_timeout_wpstream_woo_movie_rating_category_values','1691662955','no'),(307,'_transient_wpstream_woo_movie_rating_category_values','','no'),(315,'ninja_forms_oauth_client_secret','jhzhI4YfzPlnkUGwD3BsozPwQoGBX28xr3y0fpFX','yes'),(316,'ninja_forms_version','3.8.4','yes'),(317,'ninja_forms_db_version','1.4','no'),(318,'ninja_forms_required_updates','a:6:{s:19:\"CacheCollateActions\";s:19:\"2023-08-10 07:36:48\";s:17:\"CacheCollateForms\";s:19:\"2023-08-10 07:36:48\";s:18:\"CacheCollateFields\";s:19:\"2023-08-10 07:36:48\";s:19:\"CacheCollateObjects\";s:19:\"2023-08-10 07:36:48\";s:19:\"CacheCollateCleanup\";s:19:\"2023-08-10 07:36:48\";s:25:\"CacheFieldReconcilliation\";s:19:\"2023-08-10 07:36:48\";}','yes'),(319,'ninja_forms_settings','a:11:{s:11:\"date_format\";s:5:\"m/d/Y\";s:8:\"currency\";s:3:\"USD\";s:18:\"recaptcha_site_key\";s:0:\"\";s:20:\"recaptcha_secret_key\";s:0:\"\";s:20:\"recaptcha_site_key_3\";s:0:\"\";s:22:\"recaptcha_secret_key_3\";s:0:\"\";s:14:\"recaptcha_lang\";s:0:\"\";s:19:\"delete_on_uninstall\";i:0;s:21:\"disable_admin_notices\";i:0;s:16:\"builder_dev_mode\";i:0;s:18:\"opinionated_styles\";s:5:\"light\";}','yes'),(320,'ninja_forms_zuul','84','no'),(321,'wp_nf_update_fields_batch_af9c6e48a789169177d0b4104fcf40ae','a:4:{i:0;a:2:{s:2:\"id\";i:1;s:8:\"settings\";a:70:{s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:9:\"parent_id\";i:1;s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2023-08-10 13:06:49\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3277\";}}i:1;a:2:{s:2:\"id\";i:2;s:8:\"settings\";a:62:{s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:9:\"parent_id\";i:1;s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2023-08-10 13:06:49\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"2\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3281\";}}i:2;a:2:{s:2:\"id\";i:3;s:8:\"settings\";a:71:{s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:7:\"message\";s:9:\"parent_id\";i:1;s:4:\"type\";s:8:\"textarea\";s:10:\"created_at\";s:19:\"2023-08-10 13:06:49\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"3\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3284\";}}i:3;a:2:{s:2:\"id\";i:4;s:8:\"settings\";a:69:{s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:6:\"submit\";s:9:\"parent_id\";i:1;s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2023-08-10 13:06:49\";s:16:\"processing_label\";s:10:\"Processing\";s:5:\"order\";s:1:\"5\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:44:\"submit_element_hover_styles_background-color\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:40:\"submit_element_hover_styles_border-style\";s:0:\"\";s:40:\"submit_element_hover_styles_border-color\";s:0:\"\";s:33:\"submit_element_hover_styles_color\";s:0:\"\";s:34:\"submit_element_hover_styles_height\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:35:\"submit_element_hover_styles_display\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:36:\"submit_element_hover_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3287\";}}}','no');
INSERT INTO `wp_options` VALUES (322,'ninja_forms_addons_feed','[{\"title\":\"Multi Step Forms\",\"image\":\"assets\\/img\\/add-ons\\/multi-step-forms.png\",\"content\":\"Give submissions a boost on any longer form by making it a multi-page form. Drag and drop fields between pages, add breadcrumb navigation, a progress bar, and loads more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/multi-step-forms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Multi+Step+Forms\",\"plugin\":\"ninja-forms-multi-part\\/multi-part.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/multi-step-forms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Multi+Step+Forms+Docs\",\"version\":\"3.0.26\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"}]},{\"title\":\"Front-End Posting\",\"image\":\"assets\\/img\\/add-ons\\/front-end-posting.png\",\"content\":\"Let users publish content just by submitting a form! Completely configurable including post type, title, even categories and tags. Set post status, author, and much more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/post-creation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Front-End+Posting\",\"plugin\":\"ninja-forms-post-creation\\/ninja-forms-post-creation.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/post-creation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Front-End+Posting+Docs\",\"version\":\"3.0.10\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Mailchimp\",\"image\":\"assets\\/img\\/add-ons\\/mailchimp.png\",\"content\":\"Bring new life to your lists with upgraded Mailchimp signup forms for WordPress! Easy to build and customize with no code required. Link to lists and interest groups!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailchimp\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Mailchimp\",\"plugin\":\"ninja-forms-mail-chimp\\/ninja-forms-mail-chimp.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailchimp\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Mailchimp+Docs\",\"version\":\"3.3.6\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Campaign Monitor\",\"image\":\"assets\\/img\\/add-ons\\/campaign-monitor.png\",\"content\":\"Make any form a custom crafted WordPress signup form for Campaign Monitor. Connect to any list, link form fields to list fields, and watch your lists grow!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/campaign-monitor\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Campaign+Monitor\",\"plugin\":\"ninja-forms-campaign-monitor\\/ninja-forms-campaign-monitor.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/campaign-monitor\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Campaign+Monitor+Docs\",\"version\":\"3.0.6\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"User Analytics\",\"image\":\"assets\\/img\\/add-ons\\/user-analytics.png\",\"content\":\"Get better data on where your form traffic is coming from with every submission. Add 10 analytics fields including UTM source, medium, campaign, content, and more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-analytics\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Analytics\",\"plugin\":\"ninja-forms-user-analytics\\/ninja-forms-user-analytics.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-analytics\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Analytics+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Constant Contact\",\"image\":\"assets\\/img\\/add-ons\\/constant-contact.png\",\"content\":\"Connect WordPress to Constant Contact with forms that you can build and design just the way you want, no tech skills required! Subscribe users to any list or interest group.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/constant-contact\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Constant+Contact\",\"plugin\":\"ninja-forms-constant-contact\\/ninja-forms-constant-contact.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/constant-contact\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Constant+Contact+Docs\",\"version\":\"3.1.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"AWeber\",\"image\":\"assets\\/img\\/add-ons\\/aweber.png\",\"content\":\"Build your lists faster with easy to design, professional quality WordPress signup forms. No technical skills required. Connect WordPress to AWeber with style!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/aweber\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=AWeber\",\"plugin\":\"ninja-forms-aweber\\/ninja-forms-aweber.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/aweber\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=AWeber+Docs\",\"version\":\"3.2.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"PayPal Express\",\"image\":\"assets\\/img\\/add-ons\\/paypal-express.png\",\"content\":\"Set up any form to accept PayPal payments with PayPal Express for WordPress! Base totals on a fixed amount, user entered amount, or a calculated total.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/paypal-express\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PayPal+Express\",\"plugin\":\"ninja-forms-paypal-express\\/ninja-forms-paypal-express.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/paypal-express\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PayPal+Express+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"MailPoet\",\"image\":\"assets\\/img\\/add-ons\\/mailpoet.png\",\"content\":\"Say hello better! Customize your MailPoet signup forms to draw more subscribers than ever before. Connect WordPress to any MailPoet list in minutes!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailpoet\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=MailPoet\",\"plugin\":\"ninja-forms-mailpoet\\/nf-mailpoet.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailpoet\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=MailPoet+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Zoho CRM\",\"image\":\"assets\\/img\\/add-ons\\/zoho-crm.png\",\"content\":\"Customize your forms to get the most out of your connection between WordPress and Zoho. Link form fields directly to Zoho fields, custom fields included, from almost any module.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zoho-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zoho+CRM\",\"plugin\":\"ninja-forms-zoho-crm\\/ninja-forms-zoho-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zoho-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zoho+CRM+Docs\",\"version\":\"3.5.0\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Capsule CRM\",\"image\":\"assets\\/img\\/add-ons\\/capsule-crm.png\",\"content\":\"Boost conversions from WordPress to Capsule with forms tailor made to your audience. Link form fields to Capsule fields from a wide range of modules. Custom fields too!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/capsule-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Capsule+CRM\",\"plugin\":\"ninja-forms-capsule-crm\\/ninja-forms-capsule-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/capsule-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Capsule+CRM+Docs\",\"version\":\"3.4.4\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Insightly CRM\",\"image\":\"assets\\/img\\/add-ons\\/insightly-crm.png\",\"content\":\"Your customer\'s journey begins with your WordPress forms. Send Contacts, Leads, Opportunities, Custom fields and more seamlessly from WordPress to Insightly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/insightly-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Insightly+CRM\",\"plugin\":\"ninja-forms-insightly-crm\\/ninja-forms-insightly-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/insightly-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Insightly+CRM+Docs\",\"version\":\"3.2.1\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Trello\",\"image\":\"assets\\/img\\/add-ons\\/trello.png\",\"content\":\"Create a new Trello card with data from any WordPress form submission. Map fields to card details, assign members and labels, upload images, embed links.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/trello\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Trello\",\"plugin\":\"ninja-forms-trello\\/ninja-forms-trello.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/trello\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Trello+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"Elavon\",\"image\":\"assets\\/img\\/add-ons\\/elavon.png\",\"content\":\"Accept credit card payments from any of your WordPress forms. Pass customer and invoice info from any field securely into Elavon with each payment.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/elavon\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elavon\",\"plugin\":\"ninja-forms-elavon-payment-gateway\\/ninja-forms-elavon-payment-gateway.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/elavon\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elavon+Docs\",\"version\":\"3.1.2\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Zapier\",\"image\":\"assets\\/img\\/add-ons\\/zapier.png\",\"content\":\"Don\'t see an add-on integration for a service you love? Don\'t worry! Connect WordPress to more than 4,000 different services through Zapier, no code required!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zapier\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zapier\",\"plugin\":\"ninja-forms-zapier\\/ninja-forms-zapier.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zapier\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zapier+Docs\",\"version\":\"3.0.9\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"Salesforce CRM\",\"image\":\"assets\\/img\\/add-ons\\/salesforce-crm.png\",\"content\":\"Easily map any form field to any Salesforce Object or Field. A better connection to your customers begins with a better WordPress form builder!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/salesforce-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Salesforce+CRM\",\"plugin\":\"ninja-forms-salesforce-crm\\/ninja-forms-salesforce-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/salesforce-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Salesforce+CRM+Docs\",\"version\":\"3.3.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Slack\",\"image\":\"assets\\/img\\/add-ons\\/slack.png\",\"content\":\"Get realtime Slack notifications in the workspace and channel of your choice with any new WordPress form submission. @Mention any team member!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/slack\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Slack\",\"plugin\":\"ninja-forms-slack\\/ninja-forms-slack.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/slack\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Slack+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"CleverReach\",\"image\":\"assets\\/img\\/add-ons\\/cleverreach.png\",\"content\":\"Grow the reach of your email marketing with better CleverReach signup forms. Tailor your forms to your audience with this easy to set up integration!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/cleverreach\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CleverReach\",\"plugin\":\"ninja-forms-cleverreach\\/ninja-forms-cleverreach.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/cleverreach\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CleverReach+Docs\",\"version\":\"3.1.6\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Webhooks\",\"image\":\"assets\\/img\\/add-ons\\/webhooks.png\",\"content\":\"Can\'t find a WordPress integration for the service you love? Send WordPress forms data to any external URL using a simple GET or POST request!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/webhooks\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Webhooks\",\"plugin\":\"ninja-forms-webhooks\\/ninja-forms-webhooks.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/webhooks\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Webhooks+Docs\",\"version\":\"3.0.6\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Excel Export\",\"image\":\"assets\\/img\\/add-ons\\/excel-export.png\",\"content\":\"Export any form\'s submissions as a Microsoft Excel spreadsheet. Choose a date range, the fields you want to include, and export to Excel! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/excel-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Excel+Export\",\"plugin\":\"ninja-forms-excel-export\\/ninja-forms-excel-export.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/excel-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Excel+Export+Docs\",\"version\":\"3.3.5\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"Help Scout\",\"image\":\"assets\\/img\\/add-ons\\/help-scout.png\",\"content\":\"Offering great support is hard. Tailor your WordPress forms to match your customers\' needs with this Help Scout integration for WordPress.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/help-scout\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Help+Scout\",\"plugin\":null,\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/help-scout\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Help+Scout+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Emma\",\"image\":\"assets\\/img\\/add-ons\\/emma.png\",\"content\":\"Take your email marketing further with handcrafted, easy to build signup forms that connect directly into your Emma account! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emma\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Emma\",\"plugin\":\"ninja-forms-emma\\/ninja-forms-emma.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emma\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Emma+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"ClickSend SMS\",\"image\":\"assets\\/img\\/add-ons\\/clicksend-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/clicksend-sms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ClickSend+SMS\",\"plugin\":\"ninja-forms-clicksend\\/ninja-forms-clicksend.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/clicksend-sms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ClickSend+SMS+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"SMS Notifications\",\"slug\":\"sms-notifications\"}]},{\"title\":\"Twilio SMS\",\"image\":\"assets\\/img\\/add-ons\\/twilio-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/twilio\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Twilio+SMS\",\"plugin\":\"ninja-forms-twilio\\/ninja-forms-twilio.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/twilio\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Twilio+SMS+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"SMS Notifications\",\"slug\":\"sms-notifications\"}]},{\"title\":\"Recurly\",\"image\":\"assets\\/img\\/add-ons\\/recurly.png\",\"content\":\"Subscription plans a part of your business model? Let your users subscribe from any WordPress form & make management easier with Recurly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/recurly\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Recurly\",\"plugin\":\"ninja-forms-recurly\\/ninja-forms-recurly.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/recurly\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Recurly+Docs\",\"version\":\"3.0.5\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Save Progress\",\"image\":\"assets\\/img\\/add-ons\\/save-progress.png\",\"content\":\"Let your users save their work and reload it all when they have time to return. Don\'t lose out on valuable submissions for longer forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/save-progress\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Save+Progress\",\"plugin\":\"ninja-forms-save-progress\\/ninja-forms-save-progress.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/save-progress\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Save+Progress+Docs\",\"version\":\"3.0.27\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"EmailOctopus\",\"image\":\"assets\\/img\\/add-ons\\/emailoctopus.png\",\"content\":\"Pair WordPress\' best drag and drop form builder with your EmailOctopus account for incredibly effective signup forms. Easy, complete integration.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emailoctopus\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=EmailOctopus\",\"plugin\":\"ninja-forms-emailoctopus\\/ninja-forms-emailoctopus.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emailoctopus\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=EmailOctopus+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Pipeline CRM\",\"image\":\"assets\\/img\\/add-ons\\/pipelinedeals-crm.png\",\"content\":\"Complete, effortless integration with Pipeline CRM. Increase the flow of leads into your sales pipeline with upgraded lead generation forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pipelinedeals-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Pipeline+CRM\",\"plugin\":\"ninja-forms-zoho-crm\\/zoho-integration.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pipelinedeals-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Pipeline+CRM+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"ConvertKit\",\"image\":\"assets\\/img\\/add-ons\\/convertkit.png\",\"content\":\"Connect WordPress to your ConvertKit account with completely customizable opt-in forms. Watch your audience & sales grow like never before!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/convertkit\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ConvertKit\",\"plugin\":\"ninja-forms-convertkit\\/ninja-forms-convertkit.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/convertkit\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ConvertKit+Docs\",\"version\":\"3.1.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"OnePageCRM\",\"image\":\"assets\\/img\\/add-ons\\/onepage-crm.png\",\"content\":\"Integrate WordPress with OnePage CRM seamlessly through highly customizable WordPress forms. Make better conversions <em>your<\\/em> Next Action!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/onepage-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=OnePageCRM\",\"plugin\":\"ninja-forms-onepage-crm\\/ninja-forms-onepage-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/onepage-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=OnePageCRM+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"ActiveCampaign\",\"image\":\"assets\\/img\\/add-ons\\/active-campaign.png\",\"content\":\"Design custom forms that link perfectly to your ActiveCampaign account for the ultimate in marketing automation. Better leads begin here!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/activecampaign\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ActiveCampaign\",\"plugin\":\"ninja-forms-active-campaign\\/ninja-forms-active-campaign.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/activecampaign\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ActiveCampaign+Docs\",\"version\":\"3.1.2\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Agency Membership\",\"image\":\"assets\\/img\\/add-ons\\/ninja-forms-membership-bundle-2.png\",\"content\":\"Get every single Ninja Forms add-ons, at an amazingly discounted price.\",\"link\":\"https:\\/\\/ninjaforms.com\\/documentation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Agency+Membership\",\"plugin\":null,\"docs\":\"https:\\/\\/ninjaforms.com\\/documentation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Agency+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"},{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Personal Membership\",\"image\":\"assets\\/img\\/add-ons\\/individual-membership-2.png\",\"content\":\"Get our most popular add-ons at an amazingly discounted price. Perfect for the single site owner.\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Personal+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Personal+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"},{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Professional Membership\",\"image\":\"assets\\/img\\/add-ons\\/professional-membership-2.png\",\"content\":\"Get our 4 most popular add-ons at an amazingly discounted price. Perfect for your Do It Yourself business owner.\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Professional+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Professional+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"},{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Basic Membership\",\"image\":\"assets\\/img\\/add-ons\\/basic-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Basic+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Basic+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Plus Membership\",\"image\":\"assets\\/img\\/add-ons\\/plus-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Plus+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Plus+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Pro Membership\",\"image\":\"assets\\/img\\/add-ons\\/pro-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Pro+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Pro+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Elite Membership\",\"image\":\"assets\\/img\\/add-ons\\/elite-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elite+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elite+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Scheduled Submissions Export\",\"image\":\"assets\\/img\\/add-ons\\/scheduled-submissions-export.png\",\"content\":\"Use Scheduled Submissions Export to set hourly, daily, or weekly exports of any WordPress form submissions to any email address(es)!\",\"link\":\" https:\\/\\/ninjaforms.com\\/extensions\\/scheduled-submissions-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Scheduled+Submissions+Export\",\"plugin\":\"ninja-forms-scheduled-exports\\/ninja-forms-scheduled-exports.php\",\"docs\":\" https:\\/\\/ninjaforms.com\\/docs\\/scheduled-submissions-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Scheduled+Submissions+Export+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"CiviCRM\",\"image\":\"assets\\/img\\/add-ons\\/civicrm.png\",\"content\":\"Connect & update your CiviCRM account from any WordPress form with the Ninja Forms CiviCRM add-on. Easily add or update Contacts & Activities!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/civicrm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CiviCRM\",\"plugin\":\"ninja-forms-civicrm\\/ninja-forms-civicrm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/civicrm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CiviCRM+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"File Uploads\",\"image\":\"assets\\/img\\/add-ons\\/file-uploads.png\",\"content\":\"Add file upload fields to any WordPress form. Set allowed file types, sizes, upload directories and save to WordPress, Google Drive and more.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/file-uploads\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=File+Uploads\",\"plugin\":\"ninja-forms-uploads\\/file-uploads.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/file-uploads\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=File+Uploads+Docs\",\"version\":\"3.3.16\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"}]},{\"title\":\"User Management\",\"image\":\"assets\\/img\\/add-ons\\/user-management.png\",\"content\":\"Let users register, login, & manage profiles with customizable form templates. Allow user roles to view or edit form submissions. \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-management\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Management\",\"plugin\":\"ninja-forms-user-management\\/ninja-forms-user-management.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-management\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Management+Docs\",\"version\":\"3.2.0\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Layout and Styles\",\"image\":\"assets\\/img\\/add-ons\\/layout-styles.png\",\"content\":\"Edit form styles. Create two column forms. Multi column forms. Easily adjust form layout. You don\'t need a designer, just Layout and Styles!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/layouts-and-styles\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Layout+and+Styles\",\"plugin\":\"ninja-forms-style\\/ninja-forms-style.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/layouts-and-styles\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Layout+and+Styles+Docs\",\"version\":\"3.0.29\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"}]},{\"title\":\"Stripe\",\"image\":\"assets\\/img\\/add-ons\\/stripe.png\",\"content\":\"Use Stripe Checkout forms to sell products or subscriptions. Accept credit cards, Google Pay, Apple Pay, & much more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/stripe\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Stripe\",\"plugin\":\"ninja-forms-stripe\\/ninja-forms-stripe.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/stripe\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Stripe+Docs\",\"version\":\"3.2.5\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Conditional Logic\",\"image\":\"assets\\/img\\/add-ons\\/conditional-logic.png\",\"content\":\"Create forms that change as they\'re filled out. Show and hide fields, modify lists, send email to different recipients conditionally and much more.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/conditional-logic\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Conditional+Logic\",\"plugin\":\"ninja-forms-conditionals\\/conditionals.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/conditional-logic\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Conditional+Logic+Docs\",\"version\":\"3.1\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"}]},{\"title\":\"PDF Form Submission\",\"image\":\"assets\\/img\\/add-ons\\/pdf-form-submission.png\",\"content\":\"Use PDF Form Submission to generate a PDF from any WordPress form submission. Create a fully customizable, fillable PDF from top to bottom!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pdf\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PDF+Form+Submission\",\"plugin\":\"ninja-forms-pdf-submissions\\/nf-pdf-submissions.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pdf\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PDF+Form+Submission+Docs\",\"version\":\"3.2.2\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]}]','no'),(323,'widget_ninja_forms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(324,'ninja-forms-views-secret','0uH1vNYPLcMr7jCk41DjebtVLdu855iCk6DGH1kB','yes'),(325,'ninja_forms_needs_updates','0','yes'),(326,'nf_admin_notice','a:1:{s:16:\"one_week_support\";a:2:{s:5:\"start\";s:9:\"8/17/2023\";s:3:\"int\";i:7;}}','yes'),(327,'nf_form_tel_data','1,2','no'),(328,'ninja_forms_do_not_allow_tracking','1','yes'),(329,'ninja_forms_optin_reported','0','yes'),(332,'nf_sub_expiration','a:0:{}','yes'),(333,'_elementor_global_css','a:7:{s:4:\"time\";i:1691654324;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','yes'),(334,'_site_transient_timeout_available_translations','1691666046','no'),(335,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.5/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-06-18 08:25:23\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-05 08:49:59\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.23/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-06-23 11:21:55\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-07-28 09:58:22\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-06 17:17:58\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-02 08:59:58\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-05 14:06:30\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-07-14 12:12:09\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 14:37:53\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 09:52:35\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.3/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 06:53:49\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.3/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 09:49:50\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-03-29 21:14:35\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 22:00:26\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-06 20:14:01\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 16:08:07\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 07:25:21\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 07:13:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2021-12-24 12:36:39\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-05-17 04:31:21\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-04 16:53:05\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 16:14:38\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 22:51:34\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-14 22:16:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.13/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.18/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-07-19 01:11:57\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-01 04:44:31\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-05-24 16:21:45\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-07-02 10:08:01\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-10 00:54:55\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 16:30:48\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 20:33:07\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 13:40:37\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-02 15:10:49\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 07:20:47\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.30\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.30/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 22:06:16\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-10 05:56:53\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 19:02:19\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 22:54:21\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 12:55:03\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-07 12:42:08\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-07 01:15:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2023-05-19 07:40:56\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.18/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-04 06:07:20\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 00:11:15\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/6.3/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-04 15:11:14\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/6.3/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-11-24 03:51:58\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.3/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 18:51:09\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 01:58:55\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.12\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.12/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 16:22:10\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-02 04:53:35\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-07-17 13:37:28\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.3/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 16:19:52\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 09:53:27\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-02 09:00:40\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.31\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.31/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 17:31:03\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 00:06:29\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-10-01 12:16:29\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-03-31 07:59:30\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/6.3/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 08:47:11\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-01 18:38:12\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.13/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-10 04:25:47\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-03 08:30:58\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 12:29:02\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 11:16:48\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 22:03:51\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.15\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.15/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.7/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.22/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 22:36:32\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2023-03-04 10:46:30\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.13/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-15 15:30:50\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 18:38:05\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 10:10:43\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(338,'nf_form_tel_sent','true','no'),(463,'_transient_timeout_elementor_remote_info_api_data_3.18.1','1702061689','no'),(464,'_transient_elementor_remote_info_api_data_3.18.1','a:4:{s:9:\"timestamp\";s:10:\"1702016324\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(468,'_transient_timeout_elementor_remote_info_api_data_3.18.2','1702148837','no'),(469,'_transient_elementor_remote_info_api_data_3.18.2','a:4:{s:9:\"timestamp\";s:10:\"1702102106\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(490,'_transient_timeout_elementor_remote_info_api_data_3.18.3','1705336720','no'),(491,'_transient_elementor_remote_info_api_data_3.18.3','a:4:{s:9:\"timestamp\";s:10:\"1705292399\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(528,'_transient_timeout_elementor_remote_info_api_data_3.19.2','1707930536','no'),(529,'_transient_elementor_remote_info_api_data_3.19.2','a:4:{s:9:\"timestamp\";s:10:\"1707886183\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(557,'_transient_timeout_elementor_remote_info_api_data_3.20.1','1710523344','no'),(558,'_transient_elementor_remote_info_api_data_3.20.1','a:4:{s:9:\"timestamp\";s:10:\"1710477827\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(598,'_transient_timeout_elementor_remote_info_api_data_3.20.4','1713115652','no'),(599,'_transient_elementor_remote_info_api_data_3.20.4','a:4:{s:9:\"timestamp\";s:10:\"1713072206\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(635,'_transient_timeout_elementor_remote_info_api_data_3.21.5','1715707830','no'),(636,'_transient_elementor_remote_info_api_data_3.21.5','a:4:{s:9:\"timestamp\";s:10:\"1715662793\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(676,'_transient_timeout_elementor_remote_info_api_data_3.21.8','1718301141','no'),(677,'_transient_elementor_remote_info_api_data_3.21.8','a:4:{s:9:\"timestamp\";s:10:\"1718256770\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.4\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(688,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.5.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.5.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.5\";s:7:\"version\";s:5:\"6.5.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1719522285;s:15:\"version_checked\";s:5:\"6.5.5\";s:12:\"translations\";a:0:{}}','no'),(690,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1719522286;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:9:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.83\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.83.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2990457\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2990457\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.22.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3005087\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3005087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:51:\"header-footer-elementor/header-footer-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/header-footer-elementor\";s:4:\"slug\";s:23:\"header-footer-elementor\";s:6:\"plugin\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:11:\"new_version\";s:6:\"1.6.36\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/header-footer-elementor/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.36.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";s:3:\"svg\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/header-footer-elementor/assets/banner-1544x500.jpg?rev=2813167\";s:2:\"1x\";s:78:\"https://ps.w.org/header-footer-elementor/assets/banner-772x250.jpg?rev=2813167\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:37:\"elementskit-lite/elementskit-lite.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/elementskit-lite\";s:4:\"slug\";s:16:\"elementskit-lite\";s:6:\"plugin\";s:37:\"elementskit-lite/elementskit-lite.php\";s:11:\"new_version\";s:5:\"3.2.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/elementskit-lite/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/elementskit-lite.3.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-256x256.gif?rev=2518175\";s:2:\"1x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-128x128.gif?rev=2518175\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/elementskit-lite/assets/banner-1544x500.png?rev=2118488\";s:2:\"1x\";s:71:\"https://ps.w.org/elementskit-lite/assets/banner-772x250.png?rev=2118488\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:49:\"w.org/plugins/essential-addons-for-elementor-lite\";s:4:\"slug\";s:35:\"essential-addons-for-elementor-lite\";s:6:\"plugin\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:11:\"new_version\";s:6:\"5.9.24\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/essential-addons-for-elementor-lite/\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.24.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-256x256.png?rev=2598498\";s:2:\"1x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-128x128.png?rev=2598498\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-1544x500.gif?rev=3029978\";s:2:\"1x\";s:90:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-772x250.gif?rev=3029978\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:27:\"ninja-forms/ninja-forms.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/ninja-forms\";s:4:\"slug\";s:11:\"ninja-forms\";s:6:\"plugin\";s:27:\"ninja-forms/ninja-forms.php\";s:11:\"new_version\";s:5:\"3.8.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/ninja-forms/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/ninja-forms.3.8.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/ninja-forms/assets/icon-256x256.png?rev=1649747\";s:2:\"1x\";s:64:\"https://ps.w.org/ninja-forms/assets/icon-128x128.png?rev=1649747\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/ninja-forms/assets/banner-1544x500.png?rev=2069024\";s:2:\"1x\";s:66:\"https://ps.w.org/ninja-forms/assets/banner-772x250.png?rev=2069024\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";}s:43:\"template-kit-import/template-kit-import.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/template-kit-import\";s:4:\"slug\";s:19:\"template-kit-import\";s:6:\"plugin\";s:43:\"template-kit-import/template-kit-import.php\";s:11:\"new_version\";s:6:\"1.0.15\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/template-kit-import/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/template-kit-import.1.0.15.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/template-kit-import/assets/icon-256x256.png?rev=2228216\";s:2:\"1x\";s:72:\"https://ps.w.org/template-kit-import/assets/icon-128x128.png?rev=2228216\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}}s:7:\"checked\";a:10:{s:19:\"akismet/akismet.php\";s:5:\"5.3.2\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.83\";s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";s:4:\"2.52\";s:23:\"elementor/elementor.php\";s:6:\"3.22.3\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:6:\"1.6.36\";s:37:\"elementskit-lite/elementskit-lite.php\";s:5:\"3.2.0\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:6:\"5.9.24\";s:9:\"hello.php\";s:5:\"1.7.2\";s:27:\"ninja-forms/ninja-forms.php\";s:5:\"3.8.4\";s:43:\"template-kit-import/template-kit-import.php\";s:6:\"1.0.15\";}}','no'),(691,'_site_transient_timeout_theme_roots','1719438309','no'),(692,'_site_transient_theme_roots','a:4:{s:15:\"hello-elementor\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_elementor_edit_mode','builder'),(4,5,'_elementor_template_type','kit'),(5,6,'envato_tk_manifest','a:7:{s:16:\"manifest_version\";s:6:\"1.0.19\";s:5:\"title\";s:50:\"Medicare - Hospital & Health Services Template Kit\";s:12:\"page_builder\";s:9:\"elementor\";s:11:\"kit_version\";s:5:\"1.1.1\";s:9:\"templates\";a:13:{i:0;a:8:{s:4:\"name\";s:17:\"Global Kit Styles\";s:10:\"screenshot\";s:33:\"screenshots/global-kit-styles.jpg\";s:6:\"source\";s:21:\"templates/global.json\";s:11:\"preview_url\";s:29:\"http://webdemo2.risegraph.net\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:4:{s:13:\"template_type\";s:13:\"global-styles\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;s:31:\"additional_template_information\";a:1:{i:0;s:85:\"These are the global theme styles configured through the Elementor Theme Styles area.\";}}s:22:\"elementor_pro_required\";b:0;}i:1;a:9:{s:4:\"name\";s:4:\"Home\";s:10:\"screenshot\";s:20:\"screenshots/home.png\";s:6:\"source\";s:19:\"templates/home.json\";s:11:\"preview_url\";s:48:\"http://webdemo2.risegraph.net/template-kit/home/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-home\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:32;}}}i:2;a:8:{s:4:\"name\";s:5:\"About\";s:10:\"screenshot\";s:21:\"screenshots/about.png\";s:6:\"source\";s:20:\"templates/about.json\";s:11:\"preview_url\";s:49:\"http://webdemo2.risegraph.net/template-kit/about/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:3;a:8:{s:4:\"name\";s:6:\"Doctor\";s:10:\"screenshot\";s:22:\"screenshots/doctor.png\";s:6:\"source\";s:21:\"templates/doctor.json\";s:11:\"preview_url\";s:50:\"http://webdemo2.risegraph.net/template-kit/doctor/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:4;a:8:{s:4:\"name\";s:7:\"Service\";s:10:\"screenshot\";s:23:\"screenshots/service.png\";s:6:\"source\";s:22:\"templates/service.json\";s:11:\"preview_url\";s:51:\"http://webdemo2.risegraph.net/template-kit/service/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:5;a:8:{s:4:\"name\";s:4:\"Blog\";s:10:\"screenshot\";s:20:\"screenshots/blog.png\";s:6:\"source\";s:19:\"templates/blog.json\";s:11:\"preview_url\";s:48:\"http://webdemo2.risegraph.net/template-kit/blog/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:6;a:8:{s:4:\"name\";s:3:\"FAQ\";s:10:\"screenshot\";s:19:\"screenshots/faq.png\";s:6:\"source\";s:18:\"templates/faq.json\";s:11:\"preview_url\";s:47:\"http://webdemo2.risegraph.net/template-kit/faq/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:7;a:8:{s:4:\"name\";s:6:\"Career\";s:10:\"screenshot\";s:22:\"screenshots/career.png\";s:6:\"source\";s:21:\"templates/career.json\";s:11:\"preview_url\";s:50:\"http://webdemo2.risegraph.net/template-kit/career/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:8;a:8:{s:4:\"name\";s:16:\"Book Appointment\";s:10:\"screenshot\";s:32:\"screenshots/book-appointment.png\";s:6:\"source\";s:31:\"templates/book-appointment.json\";s:11:\"preview_url\";s:60:\"http://webdemo2.risegraph.net/template-kit/book-appointment/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:9;a:8:{s:4:\"name\";s:7:\"Contact\";s:10:\"screenshot\";s:23:\"screenshots/contact.png\";s:6:\"source\";s:22:\"templates/contact.json\";s:11:\"preview_url\";s:51:\"http://webdemo2.risegraph.net/template-kit/contact/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:10;a:8:{s:4:\"name\";s:13:\"404 Not Found\";s:10:\"screenshot\";s:29:\"screenshots/404-not-found.png\";s:6:\"source\";s:28:\"templates/404-not-found.json\";s:11:\"preview_url\";s:57:\"http://webdemo2.risegraph.net/template-kit/404-not-found/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:10:\"single-404\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:11;a:9:{s:4:\"name\";s:6:\"Header\";s:10:\"screenshot\";s:22:\"screenshots/header.png\";s:6:\"source\";s:21:\"templates/header.json\";s:11:\"preview_url\";s:50:\"http://webdemo2.risegraph.net/template-kit/header/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:14:\"section-header\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:9;}}}i:12;a:9:{s:4:\"name\";s:6:\"Footer\";s:10:\"screenshot\";s:22:\"screenshots/footer.png\";s:6:\"source\";s:21:\"templates/footer.json\";s:11:\"preview_url\";s:50:\"http://webdemo2.risegraph.net/template-kit/footer/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:14:\"section-footer\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:14;}}}}s:16:\"required_plugins\";a:5:{i:0;a:4:{s:4:\"name\";s:14:\"Contact Form 7\";s:7:\"version\";s:3:\"5.4\";s:4:\"file\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:6:\"author\";s:16:\"Takayuki Miyoshi\";}i:1;a:4:{s:4:\"name\";s:9:\"Elementor\";s:7:\"version\";s:5:\"3.1.4\";s:4:\"file\";s:23:\"elementor/elementor.php\";s:6:\"author\";s:13:\"Elementor.com\";}i:2;a:4:{s:4:\"name\";s:16:\"ElementsKit Lite\";s:7:\"version\";s:5:\"2.2.1\";s:4:\"file\";s:37:\"elementskit-lite/elementskit-lite.php\";s:6:\"author\";s:5:\"Wpmet\";}i:3;a:4:{s:4:\"name\";s:30:\"Essential Addons for Elementor\";s:7:\"version\";s:5:\"4.5.5\";s:4:\"file\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:6:\"author\";s:11:\"WPDeveloper\";}i:4;a:4:{s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";s:7:\"version\";s:5:\"1.5.8\";s:4:\"file\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:6:\"author\";s:31:\"Brainstorm Force, Nikhil Chavan\";}}s:6:\"images\";a:25:{i:0;a:8:{s:8:\"filename\";s:10:\"main-1.png\";s:13:\"thumbnail_url\";s:67:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/main-1.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}}s:8:\"filesize\";i:284426;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:590;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-T8SKTR4\";}i:1;a:8:{s:8:\"filename\";s:64:\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\";s:13:\"thumbnail_url\";s:129:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}}s:8:\"filesize\";i:490928;s:10:\"dimensions\";a:2:{i:0;i:2000;i:1;i:1333;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-5A5LE87\";}i:2;a:8:{s:8:\"filename\";s:12:\"main-2-2.png\";s:13:\"thumbnail_url\";s:69:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/main-2-2.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}}s:8:\"filesize\";i:200526;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:500;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-XMNLLFX\";}i:3;a:8:{s:8:\"filename\";s:64:\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\";s:13:\"thumbnail_url\";s:129:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:21:\"templates/career.json\";s:4:\"name\";s:6:\"Career\";}}s:8:\"filesize\";i:225191;s:10:\"dimensions\";a:2:{i:0;i:1199;i:1;i:799;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-5NLWPDQ\";}i:4;a:8:{s:8:\"filename\";s:10:\"Logo-3.png\";s:13:\"thumbnail_url\";s:67:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/Logo-3.png\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:2;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:3;a:2:{s:6:\"source\";s:21:\"templates/career.json\";s:4:\"name\";s:6:\"Career\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}}s:8:\"filesize\";i:4680;s:10:\"dimensions\";a:2:{i:0;i:200;i:1;i:200;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:54:\"https://elements.envato.com/60-minimalist-logos-Z3UDK6\";}i:5;a:8:{s:8:\"filename\";s:10:\"Logo-5.png\";s:13:\"thumbnail_url\";s:67:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/Logo-5.png\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:2;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:3;a:2:{s:6:\"source\";s:21:\"templates/career.json\";s:4:\"name\";s:6:\"Career\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}}s:8:\"filesize\";i:4500;s:10:\"dimensions\";a:2:{i:0;i:200;i:1;i:200;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:54:\"https://elements.envato.com/60-minimalist-logos-Z3UDK6\";}i:6;a:8:{s:8:\"filename\";s:10:\"Logo-1.png\";s:13:\"thumbnail_url\";s:67:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/Logo-1.png\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:2;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:3;a:2:{s:6:\"source\";s:21:\"templates/career.json\";s:4:\"name\";s:6:\"Career\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}}s:8:\"filesize\";i:4133;s:10:\"dimensions\";a:2:{i:0;i:200;i:1;i:200;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:54:\"https://elements.envato.com/60-minimalist-logos-Z3UDK6\";}i:7;a:8:{s:8:\"filename\";s:10:\"Logo-4.png\";s:13:\"thumbnail_url\";s:67:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/Logo-4.png\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:2;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:3;a:2:{s:6:\"source\";s:21:\"templates/career.json\";s:4:\"name\";s:6:\"Career\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}}s:8:\"filesize\";i:5323;s:10:\"dimensions\";a:2:{i:0;i:200;i:1;i:200;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:54:\"https://elements.envato.com/60-minimalist-logos-Z3UDK6\";}i:8;a:8:{s:8:\"filename\";s:10:\"Logo-2.png\";s:13:\"thumbnail_url\";s:67:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/Logo-2.png\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:2;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:3;a:2:{s:6:\"source\";s:21:\"templates/career.json\";s:4:\"name\";s:6:\"Career\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}}s:8:\"filesize\";i:4841;s:10:\"dimensions\";a:2:{i:0;i:200;i:1;i:200;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:54:\"https://elements.envato.com/60-minimalist-logos-Z3UDK6\";}i:9;a:8:{s:8:\"filename\";s:52:\"group-of-medics-walking-along-hospital-P92EJ7V-1.jpg\";s:13:\"thumbnail_url\";s:117:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/group-of-medics-walking-along-hospital-P92EJ7V-1-800x442.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}}s:8:\"filesize\";i:169887;s:10:\"dimensions\";a:2:{i:0;i:1077;i:1;i:595;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-P92EJ7V\";}i:10;a:8:{s:8:\"filename\";s:64:\"healthcare-medicine-and-hospital-treatment-concept-CV8GSGA-1.jpg\";s:13:\"thumbnail_url\";s:129:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/healthcare-medicine-and-hospital-treatment-concept-CV8GSGA-1-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:1;a:2:{s:6:\"source\";s:21:\"templates/doctor.json\";s:4:\"name\";s:6:\"Doctor\";}}s:8:\"filesize\";i:182214;s:10:\"dimensions\";a:2:{i:0;i:1440;i:1;i:960;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-CV8GSGA\";}i:11;a:8:{s:8:\"filename\";s:64:\"hospital-healthcare-workers-covid-19-treatment-con-M2ASHZ6-1.jpg\";s:13:\"thumbnail_url\";s:129:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/hospital-healthcare-workers-covid-19-treatment-con-M2ASHZ6-1-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:1;a:2:{s:6:\"source\";s:21:\"templates/doctor.json\";s:4:\"name\";s:6:\"Doctor\";}}s:8:\"filesize\";i:138789;s:10:\"dimensions\";a:2:{i:0;i:1440;i:1;i:960;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-M2ASHZ6\";}i:12;a:8:{s:8:\"filename\";s:64:\"covid19-coronavirus-healthcare-and-doctors-concept-T8SKTR4-1.jpg\";s:13:\"thumbnail_url\";s:129:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/covid19-coronavirus-healthcare-and-doctors-concept-T8SKTR4-1-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:1;a:2:{s:6:\"source\";s:21:\"templates/doctor.json\";s:4:\"name\";s:6:\"Doctor\";}}s:8:\"filesize\";i:174582;s:10:\"dimensions\";a:2:{i:0;i:1440;i:1;i:960;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-T8SKTR4\";}i:13;a:8:{s:8:\"filename\";s:64:\"healthcare-workers-coronavirus-covid-19-pandemic-a-T6F7TPE-2.jpg\";s:13:\"thumbnail_url\";s:129:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/healthcare-workers-coronavirus-covid-19-pandemic-a-T6F7TPE-2-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/doctor.json\";s:4:\"name\";s:6:\"Doctor\";}}s:8:\"filesize\";i:168853;s:10:\"dimensions\";a:2:{i:0;i:1440;i:1;i:960;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-T6F7TPE\";}i:14;a:8:{s:8:\"filename\";s:38:\"doctor-working-at-hospital-9AGKBN4.jpg\";s:13:\"thumbnail_url\";s:103:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/doctor-working-at-hospital-9AGKBN4-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/doctor.json\";s:4:\"name\";s:6:\"Doctor\";}}s:8:\"filesize\";i:499209;s:10:\"dimensions\";a:2:{i:0;i:2000;i:1;i:1333;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-9AGKBN4\";}i:15;a:8:{s:8:\"filename\";s:61:\"portrait-of-mature-male-doctor-wearing-white-coat-H49URGD.jpg\";s:13:\"thumbnail_url\";s:126:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/portrait-of-mature-male-doctor-wearing-white-coat-H49URGD-800x532.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/doctor.json\";s:4:\"name\";s:6:\"Doctor\";}}s:8:\"filesize\";i:474856;s:10:\"dimensions\";a:2:{i:0;i:2000;i:1;i:1330;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-H49URGD\";}i:16;a:8:{s:8:\"filename\";s:64:\"healthcare-workers-covid-19-coronavirus-and-preven-ZLTGEQM-1.jpg\";s:13:\"thumbnail_url\";s:129:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/healthcare-workers-covid-19-coronavirus-and-preven-ZLTGEQM-1-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/doctor.json\";s:4:\"name\";s:6:\"Doctor\";}}s:8:\"filesize\";i:185072;s:10:\"dimensions\";a:2:{i:0;i:1440;i:1;i:960;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-ZLTGEQM\";}i:17;a:8:{s:8:\"filename\";s:64:\"healthcare-workers-prevent-virus-insurance-and-med-BH4ZMHN-1.jpg\";s:13:\"thumbnail_url\";s:129:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/healthcare-workers-prevent-virus-insurance-and-med-BH4ZMHN-1-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/doctor.json\";s:4:\"name\";s:6:\"Doctor\";}}s:8:\"filesize\";i:190805;s:10:\"dimensions\";a:2:{i:0;i:1440;i:1;i:960;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-BH4ZMHN\";}i:18;a:8:{s:8:\"filename\";s:59:\"confident-adult-doctor-standing-in-a-hospital-WM8UDZC-1.jpg\";s:13:\"thumbnail_url\";s:124:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/confident-adult-doctor-standing-in-a-hospital-WM8UDZC-1-800x534.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/career.json\";s:4:\"name\";s:6:\"Career\";}}s:8:\"filesize\";i:437286;s:10:\"dimensions\";a:2:{i:0;i:2000;i:1;i:1335;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-WM8UDZC\";}i:19;a:8:{s:8:\"filename\";s:64:\"portrait-of-senior-doctor-consulting-his-client-pa-BJTDMJ3-1.jpg\";s:13:\"thumbnail_url\";s:129:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/portrait-of-senior-doctor-consulting-his-client-pa-BJTDMJ3-1-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/career.json\";s:4:\"name\";s:6:\"Career\";}}s:8:\"filesize\";i:398149;s:10:\"dimensions\";a:2:{i:0;i:2000;i:1;i:1333;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-BJTDMJ3\";}i:20;a:8:{s:8:\"filename\";s:63:\"female-surgeon-and-assistant-professional-surgery-QPKUWKF-1.jpg\";s:13:\"thumbnail_url\";s:128:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/female-surgeon-and-assistant-professional-surgery-QPKUWKF-1-800x532.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/career.json\";s:4:\"name\";s:6:\"Career\";}}s:8:\"filesize\";i:419977;s:10:\"dimensions\";a:2:{i:0;i:2000;i:1;i:1331;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-QPKUWKF\";}i:21;a:8:{s:8:\"filename\";s:32:\"family-at-hospital-M43S4FD-1.jpg\";s:13:\"thumbnail_url\";s:97:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/family-at-hospital-M43S4FD-1-800x534.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/career.json\";s:4:\"name\";s:6:\"Career\";}}s:8:\"filesize\";i:482777;s:10:\"dimensions\";a:2:{i:0;i:2000;i:1;i:1335;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-M43S4FD\";}i:22;a:8:{s:8:\"filename\";s:42:\"doctor-and-patient-at-hospital-775TK6U.jpg\";s:13:\"thumbnail_url\";s:107:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/doctor-and-patient-at-hospital-775TK6U-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/career.json\";s:4:\"name\";s:6:\"Career\";}}s:8:\"filesize\";i:400936;s:10:\"dimensions\";a:2:{i:0;i:2000;i:1;i:1333;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-775TK6U\";}i:23;a:8:{s:8:\"filename\";s:32:\"cropped-cropped-Untitled-1-1.png\";s:13:\"thumbnail_url\";s:89:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/cropped-cropped-Untitled-1-1.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}i:1;a:2:{s:6:\"source\";s:21:\"templates/header.json\";s:4:\"name\";s:6:\"Header\";}}s:8:\"filesize\";i:8781;s:10:\"dimensions\";a:2:{i:0;i:558;i:1;i:123;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:24;a:8:{s:8:\"filename\";s:14:\"Untitled-3.png\";s:13:\"thumbnail_url\";s:71:\"http://webdemo2.risegraph.net/wp-content/uploads/2021/03/Untitled-3.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/footer.json\";s:4:\"name\";s:6:\"Footer\";}}s:8:\"filesize\";i:3045;s:10:\"dimensions\";a:2:{i:0;i:382;i:1;i:85;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}}}'),(6,6,'envato_tk_folder_name','0eed2ecdb55c92fccff209c00e3cead3'),(7,6,'envato_tk_builder','elementor'),(8,6,'envato_tk_source_zip_url','https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/template-kits/0eed2ecdb55c92fccff209c00e3cead3/source-6.zip'),(16,8,'_wp_attached_file','2023/08/cropped-cropped-Untitled-1-1.png'),(17,8,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:558;s:6:\"height\";i:123;s:4:\"file\";s:40:\"2023/08/cropped-cropped-Untitled-1-1.png\";s:8:\"filesize\";i:9268;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"cropped-cropped-Untitled-1-1-300x66.png\";s:5:\"width\";i:300;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5980;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"cropped-cropped-Untitled-1-1-150x123.png\";s:5:\"width\";i:150;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2293;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18,8,'_elementor_source_image_hash','8dbf12e491d09ea3e7b1a719fc5395cac113e62d'),(19,9,'_elementor_edit_mode','builder'),(20,9,'_elementor_template_type','section'),(21,9,'_elementor_version','3.15.1'),(22,10,'_elementor_edit_mode','builder'),(23,10,'_elementor_template_type','section'),(24,10,'_elementor_version','3.15.1'),(25,9,'_wp_page_template','elementor_header_footer'),(26,9,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(27,9,'_elementor_data','[{\"id\":\"5c10363e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":8,\"vertical\":8,\"blur\":26,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29e02e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":20,\"_inline_size_mobile\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"709dc1c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"8\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/cropped-cropped-Untitled-1-1.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4258b171\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6037dd2\",\"elType\":\"widget\",\"settings\":{\"menu\":\"home\",\"navmenu_align\":\"center\",\"submenu_animation\":\"slide_up\",\"animation_line\":\"slide\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_weight\":\"600\",\"dropdown_divider_border\":\"none\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item\":\"globals\\/colors?id=text\",\"toggle_color\":\"globals\\/colors?id=text\",\"toggle_hover_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=primary\",\"bg_color_menu_item\":\"\",\"dropdown_typography_typography\":\"globals\\/typography?id=accent\",\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"background_color_dropdown_item\":\"\"},\"resp_align\":\"left\",\"dropdown_icon\":{\"value\":\"icon icon-menu-11\",\"library\":\"ekiticons\"},\"dropdown_close_icon\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"menu_space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"color_menu_item\":\"#333333\",\"color_menu_item_active\":\"#2193B0\",\"color_dropdown_item\":\"#333333\",\"dropdown_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"toggle_color\":\"#333333\",\"toggle_hover_color\":\"#2193B0\",\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"pointer_color_menu_item_hover\":\"#2193B0\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#2193B0\",\"color_dropdown_item_active\":\"#2193B0\",\"dropdown_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"dropdown_border_color\":\"#2193B0\",\"all_background_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_slideshow_gallery\":[],\"all_background_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"544ddf84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.332000000000001,\"content_position\":\"center\",\"_inline_size_tablet\":30,\"_inline_size_mobile\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ea1d579\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"ha_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ha_height_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ha_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"ha_width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(28,11,'_elementor_edit_mode','builder'),(29,11,'_elementor_template_type','section'),(30,11,'_elementor_version','3.15.1'),(31,11,'_wp_page_template','default'),(32,11,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(33,11,'_elementor_data','[{\"id\":\"5c10363e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":8,\"vertical\":8,\"blur\":26,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29e02e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":20,\"_inline_size_mobile\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"709dc1c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"8\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/cropped-cropped-Untitled-1-1.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4258b171\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6037dd2\",\"elType\":\"widget\",\"settings\":{\"menu\":\"home\",\"navmenu_align\":\"center\",\"submenu_animation\":\"slide_up\",\"animation_line\":\"slide\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_weight\":\"600\",\"dropdown_divider_border\":\"none\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item\":\"globals\\/colors?id=text\",\"toggle_color\":\"globals\\/colors?id=text\",\"toggle_hover_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=primary\",\"bg_color_menu_item\":\"\",\"dropdown_typography_typography\":\"globals\\/typography?id=accent\",\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"background_color_dropdown_item\":\"\"},\"resp_align\":\"left\",\"dropdown_icon\":{\"value\":\"icon icon-menu-11\",\"library\":\"ekiticons\"},\"dropdown_close_icon\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"menu_space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"color_menu_item\":\"#333333\",\"color_menu_item_active\":\"#2193B0\",\"color_dropdown_item\":\"#333333\",\"dropdown_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"toggle_color\":\"#333333\",\"toggle_hover_color\":\"#2193B0\",\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"pointer_color_menu_item_hover\":\"#2193B0\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#2193B0\",\"color_dropdown_item_active\":\"#2193B0\",\"dropdown_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"dropdown_border_color\":\"#2193B0\",\"all_background_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_slideshow_gallery\":[],\"all_background_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"544ddf84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.332000000000001,\"content_position\":\"center\",\"_inline_size_tablet\":30,\"_inline_size_mobile\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ea1d579\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"ha_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ha_height_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ha_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"ha_width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(34,9,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(35,9,'_eael_custom_js',''),(36,9,'envato_tk_source_kit','6'),(37,9,'envato_tk_source_index','11'),(38,12,'_wp_attached_file','2023/08/Untitled-3.png'),(39,12,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:382;s:6:\"height\";i:85;s:4:\"file\";s:22:\"2023/08/Untitled-3.png\";s:8:\"filesize\";i:3226;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Untitled-3-300x67.png\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4519;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Untitled-3-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1368;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(40,12,'_elementor_source_image_hash','7c375467ac3a0266bcb915975f499b94e58b0878'),(41,13,'_wp_attached_file','2023/08/placeholder.png'),(42,13,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2023/08/placeholder.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43,13,'_elementor_source_image_hash','1624fbac6595b5a5e4b4caee36b06ff0019a7f84'),(44,14,'_elementor_edit_mode','builder'),(45,14,'_elementor_template_type','section'),(46,14,'_elementor_version','3.15.1'),(47,15,'_elementor_edit_mode','builder'),(48,15,'_elementor_template_type','section'),(49,15,'_elementor_version','3.15.1'),(50,14,'_wp_page_template','elementor_header_footer'),(51,14,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(52,14,'_elementor_data','[{\"id\":\"49c6ae05\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"40\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c44a738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"579b2669\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"12\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Untitled-3.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7776c2d\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54991b7f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5604c797\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"469e3844\",\"elType\":\"widget\",\"settings\":{\"title\":\"Page\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2584fb9a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"dropdown_icon\":{\"value\":\"fas fa-align-justify\",\"library\":\"fa-solid\"},\"dropdown_close_icon\":{\"value\":\"far fa-window-close\",\"library\":\"fa-regular\"},\"all_background_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_slideshow_gallery\":[],\"all_background_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"f2babe8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"438b4637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Favorite\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\",\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56494dde\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"},\"dropdown_icon\":{\"value\":\"fas fa-align-justify\",\"library\":\"fa-solid\"},\"dropdown_close_icon\":{\"value\":\"far fa-window-close\",\"library\":\"fa-regular\"},\"all_background_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_slideshow_gallery\":[],\"all_background_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"4bd864d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76751d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fun Fact\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25497566\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons__switch\":\"\",\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"K\",\"ekit_funfact_title_text\":\"Patient\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_super_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=accent\"},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"ekit_funfact_icon_image\":{\"id\":13,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79cf7b4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1969375e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"98bbe34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e222568\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1194ce39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b38171b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2021 Medicare | Powered by Risegraph\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"29f0c930\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1115c0d3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"e789e42\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c452aa\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"c62c463\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#2193B0\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(53,16,'_elementor_edit_mode','builder'),(54,16,'_elementor_template_type','section'),(55,16,'_elementor_version','3.15.1'),(56,16,'_wp_page_template','default'),(57,16,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(58,16,'_elementor_data','[{\"id\":\"49c6ae05\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"40\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c44a738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"579b2669\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"12\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Untitled-3.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7776c2d\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54991b7f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5604c797\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"469e3844\",\"elType\":\"widget\",\"settings\":{\"title\":\"Page\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2584fb9a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"dropdown_icon\":{\"value\":\"fas fa-align-justify\",\"library\":\"fa-solid\"},\"dropdown_close_icon\":{\"value\":\"far fa-window-close\",\"library\":\"fa-regular\"},\"all_background_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_slideshow_gallery\":[],\"all_background_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"f2babe8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"438b4637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Favorite\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\",\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56494dde\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"},\"dropdown_icon\":{\"value\":\"fas fa-align-justify\",\"library\":\"fa-solid\"},\"dropdown_close_icon\":{\"value\":\"far fa-window-close\",\"library\":\"fa-regular\"},\"all_background_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_slideshow_gallery\":[],\"all_background_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"4bd864d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76751d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fun Fact\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25497566\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons__switch\":\"\",\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"K\",\"ekit_funfact_title_text\":\"Patient\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_super_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=accent\"},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"ekit_funfact_icon_image\":{\"id\":13,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79cf7b4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1969375e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"98bbe34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e222568\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1194ce39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b38171b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2021 Medicare | Powered by Risegraph\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"29f0c930\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1115c0d3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"e789e42\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c452aa\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"c62c463\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#2193B0\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(59,14,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(60,14,'_eael_custom_js',''),(61,14,'envato_tk_source_kit','6'),(62,14,'envato_tk_source_index','12'),(63,17,'_wp_attached_file','2023/08/main-1.png'),(64,17,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:590;s:4:\"file\";s:18:\"2023/08/main-1.png\";s:8:\"filesize\";i:287665;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"main-1-254x300.png\";s:5:\"width\";i:254;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73600;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"main-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25968;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,17,'_elementor_source_image_hash','94ae3a9e93e667084a0c20b209b3f5af7dac4032'),(66,18,'_wp_attached_file','2023/08/placeholder-1.png'),(67,18,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/08/placeholder-1.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(68,18,'_elementor_source_image_hash','88d42d2a7ad2d03b66dfd41184c97fffe3ff3254'),(69,19,'_wp_attached_file','2023/08/main-2-2.png'),(70,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2023/08/main-2-2.png\";s:8:\"filesize\";i:183944;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"main-2-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65736;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"main-2-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19909;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,19,'_elementor_source_image_hash','d2e654f19cd44524fbabb21ad53c78fdf077090b'),(72,20,'_wp_attached_file','2023/08/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg'),(73,20,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1199;s:6:\"height\";i:799;s:4:\"file\";s:72:\"2023/08/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\";s:8:\"filesize\";i:158429;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14592;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102832;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6851;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:72:\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64971;}s:24:\"elementor_custom_500x450\";a:4:{s:4:\"file\";s:124:\"elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:22:\"Monkey Business Images\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(74,20,'_elementor_source_image_hash','40f46902e0b71c91ddb40ecfd5ac1351b69fc2c9'),(75,21,'_wp_attached_file','2023/08/Logo-3.png'),(76,21,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2023/08/Logo-3.png\";s:8:\"filesize\";i:2401;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Logo-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1594;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,21,'_elementor_source_image_hash','f6c9f5373ddbecad31d798d65330eed191d69455'),(78,22,'_wp_attached_file','2023/08/Logo-5.png'),(79,22,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2023/08/Logo-5.png\";s:8:\"filesize\";i:2222;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Logo-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1778;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(80,22,'_elementor_source_image_hash','00a0317c8181196194a4ebc4dfd05b5ccf7db347'),(81,23,'_wp_attached_file','2023/08/Logo-1.png'),(82,23,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2023/08/Logo-1.png\";s:8:\"filesize\";i:1855;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Logo-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1346;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(83,23,'_elementor_source_image_hash','70f1a4eeea03069b8969e8d4baf7bc5168bfb237'),(84,24,'_wp_attached_file','2023/08/Logo-4.png'),(85,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2023/08/Logo-4.png\";s:8:\"filesize\";i:3045;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Logo-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2014;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(86,24,'_elementor_source_image_hash','dc31c538d1a37503aadb384c2ace5c0cd38a6884'),(87,25,'_wp_attached_file','2023/08/Logo-2.png'),(88,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2023/08/Logo-2.png\";s:8:\"filesize\";i:2563;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Logo-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2073;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(89,25,'_elementor_source_image_hash','ae754c446e1b6ca05884eb222439484a78bd280f'),(90,26,'_wp_attached_file','2023/08/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg'),(91,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:72:\"2023/08/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\";s:8:\"filesize\";i:177793;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12024;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72360;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6248;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:72:\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46251;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:74:\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-1536x1023.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138440;}s:24:\"elementor_custom_500x465\";a:4:{s:4:\"file\";s:124:\"elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:465;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(92,26,'_elementor_source_image_hash','3f0fb91debaffec2f6c914d62020ea685419804e'),(93,27,'_wp_attached_file','2023/08/placeholder-2.png'),(94,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/08/placeholder-2.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-2-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-2-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(95,27,'_elementor_source_image_hash','1624fbac6595b5a5e4b4caee36b06ff0019a7f84'),(96,28,'_wp_attached_file','2023/08/placeholder-3.png'),(97,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/08/placeholder-3.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-3-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-3-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-3-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(98,28,'_elementor_source_image_hash','1624fbac6595b5a5e4b4caee36b06ff0019a7f84'),(99,29,'_wp_attached_file','2023/08/placeholder-4.png'),(100,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/08/placeholder-4.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-4-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-4-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-4-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(101,29,'_elementor_source_image_hash','1624fbac6595b5a5e4b4caee36b06ff0019a7f84'),(102,30,'_wp_attached_file','2023/08/placeholder-5.png'),(103,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/08/placeholder-5.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-5-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-5-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-5-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(104,30,'_elementor_source_image_hash','1624fbac6595b5a5e4b4caee36b06ff0019a7f84'),(105,31,'_wp_attached_file','2023/08/placeholder-6.png'),(106,31,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/08/placeholder-6.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-6-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-6-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-6-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(107,31,'_elementor_source_image_hash','1624fbac6595b5a5e4b4caee36b06ff0019a7f84'),(108,32,'_elementor_edit_mode','builder'),(109,32,'_elementor_template_type','section'),(110,32,'_elementor_version','3.15.1'),(111,33,'_elementor_edit_mode','builder'),(112,33,'_elementor_template_type','section'),(113,33,'_elementor_version','3.15.1'),(114,32,'_wp_page_template','elementor_header_footer'),(115,32,'_elementor_page_settings','a:2:{s:14:\"ha_grid_zindex\";s:4:\"1000\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(116,32,'_elementor_data','[{\"id\":\"31e05c4d\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32c58da0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30f275bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e92151\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95bb64b\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23f293ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43e747c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2fd4e173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"13030d1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4353e31d\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play\",\"library\":\"ekiticons\"},\"ekit_video_player_self_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"self_poster_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b1d2049\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f112dde\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c8cfdc6\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e74f853\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d1e7271\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"79df30\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a01fee4\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284b4d74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc795cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3899ab6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6207ac0c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a5f1356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"225f9af3\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e944d3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d0bbc19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d117480\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1570a8ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14697b51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"225358c9\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74a1fb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.174999999999997,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6326996\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Future\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"239871ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Latest Features\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65ec540d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<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.\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#333333\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5bdb4aeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6da80292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.825000000000003,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"499268c5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7992f362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c7fa683\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"527b3c8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Faster Process\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b5c5106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"50b49578\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"248d6400\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b74d2c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"connectivity\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1de889b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5c3d16af\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57ae58f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bf33a22\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"36b8fee4\",\"elType\":\"widget\",\"settings\":{\"title\":\"branch everywhere\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37d364\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f55fe79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cb85b97\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"773fe513\",\"elType\":\"widget\",\"settings\":{\"title\":\"best teller\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79cfebdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cff887c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"213dc38a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2334de\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"56f2e1aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f2f445c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2eb96fd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"518077c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"36085e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42236956\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40bbcf76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34be2180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37d3cf46\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e1205a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f69726\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3a546c\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_icon_type\":\"icon\",\"eael_feature_list_icon_is_individual_style\":\"\",\"eael_feature_list_icon_individual_color\":\"#fff\",\"eael_feature_list_icon_individual_bg_color\":\"\",\"eael_feature_list_icon_individual_box_bg_color\":\"\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"},\"eael_feature_list_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_icon_type\":\"icon\",\"eael_feature_list_icon_is_individual_style\":\"\",\"eael_feature_list_icon_individual_color\":\"#fff\",\"eael_feature_list_icon_individual_bg_color\":\"\",\"eael_feature_list_icon_individual_box_bg_color\":\"\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"},\"eael_feature_list_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_icon_type\":\"icon\",\"eael_feature_list_icon_is_individual_style\":\"\",\"eael_feature_list_icon_individual_color\":\"#fff\",\"eael_feature_list_icon_individual_bg_color\":\"\",\"eael_feature_list_icon_individual_box_bg_color\":\"\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"},\"eael_feature_list_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_icon_type\":\"icon\",\"eael_feature_list_icon_is_individual_style\":\"\",\"eael_feature_list_icon_individual_color\":\"#fff\",\"eael_feature_list_icon_individual_bg_color\":\"\",\"eael_feature_list_icon_individual_box_bg_color\":\"\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"},\"eael_feature_list_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_icon_type\":\"icon\",\"eael_feature_list_icon_is_individual_style\":\"\",\"eael_feature_list_icon_individual_color\":\"#fff\",\"eael_feature_list_icon_individual_bg_color\":\"\",\"eael_feature_list_icon_individual_box_bg_color\":\"\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"},\"eael_feature_list_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\",\"eael_feature_list_icon_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"eael_feature_list_icon_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"2cd4fde4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56f683b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"581fed40\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6978539d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b160e38\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e957d1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"51500ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"778874cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a4f566\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28ea0c26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"516c7123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7fca3e0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5169e3a7\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\",\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b26b0f1\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59556d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e90f65a\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_client_logo_container_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_container_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_container_bg_color_slideshow_gallery\":[],\"ekit_client_logo_client_logo_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_client_logo_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_client_logo_background_group_slideshow_gallery\":[],\"ekit_client_logo_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_background_hover_group_slideshow_gallery\":[],\"ekit_client_logo_background_simple_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_background_simple_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_background_simple_hover_group_slideshow_gallery\":[],\"ekit_client_logo_hover_animation_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_hover_animation_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_hover_animation_color_slideshow_gallery\":[],\"ekit_client_logo_dot_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_dot_background_slideshow_gallery\":[],\"ekit_client_logo_dot_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_dot_active_background_slideshow_gallery\":[],\"ekit_client_logo_seperator_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_seperator_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_seperator_bg_color_slideshow_gallery\":[],\"ekit_client_logo_seperator_bg_color_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_seperator_bg_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_seperator_bg_color_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e624e68\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a025221\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"795150fc\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76940be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45681a2d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c5c170f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d6bce7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a088a53\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(117,34,'_elementor_edit_mode','builder'),(118,34,'_elementor_template_type','section'),(119,34,'_elementor_version','3.15.1'),(120,34,'_wp_page_template','default'),(121,34,'_elementor_page_settings','a:2:{s:14:\"ha_grid_zindex\";s:4:\"1000\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(122,34,'_elementor_data','[{\"id\":\"31e05c4d\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32c58da0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30f275bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e92151\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95bb64b\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23f293ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43e747c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2fd4e173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"13030d1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4353e31d\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play\",\"library\":\"ekiticons\"},\"ekit_video_player_self_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"self_poster_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b1d2049\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f112dde\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c8cfdc6\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e74f853\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d1e7271\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"79df30\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a01fee4\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284b4d74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc795cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3899ab6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6207ac0c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a5f1356\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"225f9af3\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e944d3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d0bbc19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d117480\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1570a8ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14697b51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"225358c9\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74a1fb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.174999999999997,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6326996\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Future\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"239871ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Latest Features\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65ec540d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<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.\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#333333\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5bdb4aeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6da80292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.825000000000003,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"499268c5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7992f362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c7fa683\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"527b3c8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Faster Process\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b5c5106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"50b49578\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"248d6400\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b74d2c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"connectivity\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1de889b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5c3d16af\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57ae58f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bf33a22\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"36b8fee4\",\"elType\":\"widget\",\"settings\":{\"title\":\"branch everywhere\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37d364\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f55fe79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cb85b97\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"773fe513\",\"elType\":\"widget\",\"settings\":{\"title\":\"best teller\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79cfebdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cff887c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"213dc38a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2334de\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"56f2e1aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f2f445c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2eb96fd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"518077c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"36085e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42236956\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40bbcf76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34be2180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37d3cf46\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e1205a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f69726\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3a546c\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_icon_type\":\"icon\",\"eael_feature_list_icon_is_individual_style\":\"\",\"eael_feature_list_icon_individual_color\":\"#fff\",\"eael_feature_list_icon_individual_bg_color\":\"\",\"eael_feature_list_icon_individual_box_bg_color\":\"\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"},\"eael_feature_list_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_icon_type\":\"icon\",\"eael_feature_list_icon_is_individual_style\":\"\",\"eael_feature_list_icon_individual_color\":\"#fff\",\"eael_feature_list_icon_individual_bg_color\":\"\",\"eael_feature_list_icon_individual_box_bg_color\":\"\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"},\"eael_feature_list_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_icon_type\":\"icon\",\"eael_feature_list_icon_is_individual_style\":\"\",\"eael_feature_list_icon_individual_color\":\"#fff\",\"eael_feature_list_icon_individual_bg_color\":\"\",\"eael_feature_list_icon_individual_box_bg_color\":\"\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"},\"eael_feature_list_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_icon_type\":\"icon\",\"eael_feature_list_icon_is_individual_style\":\"\",\"eael_feature_list_icon_individual_color\":\"#fff\",\"eael_feature_list_icon_individual_bg_color\":\"\",\"eael_feature_list_icon_individual_box_bg_color\":\"\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"},\"eael_feature_list_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_icon_type\":\"icon\",\"eael_feature_list_icon_is_individual_style\":\"\",\"eael_feature_list_icon_individual_color\":\"#fff\",\"eael_feature_list_icon_individual_bg_color\":\"\",\"eael_feature_list_icon_individual_box_bg_color\":\"\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"},\"eael_feature_list_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\",\"eael_feature_list_icon_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"eael_feature_list_icon_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"2cd4fde4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56f683b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"581fed40\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6978539d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b160e38\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e957d1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"51500ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"778874cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a4f566\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28ea0c26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"516c7123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7fca3e0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5169e3a7\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\",\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b26b0f1\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59556d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e90f65a\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_enable_hover_logo\":\"\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"},\"ekit_client_logo_enable_link\":\"\",\"ekit_client_logo_website_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_client_logo_container_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_container_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_container_bg_color_slideshow_gallery\":[],\"ekit_client_logo_client_logo_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_client_logo_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_client_logo_background_group_slideshow_gallery\":[],\"ekit_client_logo_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_background_hover_group_slideshow_gallery\":[],\"ekit_client_logo_background_simple_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_background_simple_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_background_simple_hover_group_slideshow_gallery\":[],\"ekit_client_logo_hover_animation_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_hover_animation_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_hover_animation_color_slideshow_gallery\":[],\"ekit_client_logo_dot_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_dot_background_slideshow_gallery\":[],\"ekit_client_logo_dot_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_dot_active_background_slideshow_gallery\":[],\"ekit_client_logo_seperator_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_seperator_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_seperator_bg_color_slideshow_gallery\":[],\"ekit_client_logo_seperator_bg_color_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_seperator_bg_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_client_logo_seperator_bg_color_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e624e68\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a025221\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"795150fc\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76940be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45681a2d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c5c170f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d6bce7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a088a53\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(123,32,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(124,32,'_eael_custom_js',''),(125,32,'_eael_widget_elements','a:1:{s:12:\"feature-list\";s:12:\"feature-list\";}'),(126,32,'envato_tk_source_kit','6'),(127,32,'envato_tk_source_index','1'),(129,35,'_edit_lock','1691566012:1'),(130,36,'_edit_lock','1691565878:1'),(131,37,'_edit_lock','1691732925:1'),(132,37,'_wp_page_template','elementor_header_footer'),(133,37,'_elementor_edit_mode','builder'),(134,37,'_elementor_template_type','wp-page'),(135,37,'_elementor_version','3.15.2'),(136,39,'_edit_last','1'),(137,39,'_edit_lock','1691661572:1'),(138,39,'_wp_page_template','elementor_header_footer'),(139,39,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(140,39,'ehf_target_exclude_locations','a:0:{}'),(141,39,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(142,39,'ehf_template_type','type_header'),(143,39,'_elementor_edit_mode','builder'),(144,39,'_elementor_template_type','wp-post'),(145,39,'_elementor_version','3.15.2'),(147,39,'ekit_post_views_count','3'),(157,42,'_wp_page_template','elementor_header_footer'),(158,42,'_elementor_edit_mode','builder'),(159,42,'_elementor_template_type','wp-post'),(160,42,'_elementor_version','3.15.1'),(162,43,'_wp_page_template','elementor_header_footer'),(163,43,'_elementor_edit_mode','builder'),(164,43,'_elementor_template_type','wp-post'),(165,43,'_elementor_version','3.15.1'),(167,39,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(168,39,'_elementor_data','[{\"id\":\"e2479d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":8,\"vertical\":8,\"blur\":26,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"72d2fbb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24.971,\"content_position\":\"center\",\"_inline_size_tablet\":20,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"7de4c9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"53fcf15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.029000000000003,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"4a246d96\",\"elType\":\"widget\",\"settings\":{\"menu\":\"home\",\"navmenu_align\":\"center\",\"submenu_animation\":\"slide_up\",\"animation_line\":\"slide\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_weight\":\"600\",\"dropdown_divider_border\":\"none\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item\":\"globals\\/colors?id=text\",\"toggle_color\":\"globals\\/colors?id=text\",\"toggle_hover_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=primary\",\"bg_color_menu_item\":\"\",\"dropdown_typography_typography\":\"globals\\/typography?id=accent\",\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"background_color_dropdown_item\":\"\"},\"resp_align\":\"left\",\"dropdown_icon\":{\"value\":\"icon icon-menu-11\",\"library\":\"ekiticons\"},\"dropdown_close_icon\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"menu_space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"color_menu_item\":\"#333333\",\"color_menu_item_active\":\"#2193B0\",\"color_dropdown_item\":\"#333333\",\"dropdown_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"toggle_color\":\"#333333\",\"toggle_hover_color\":\"#2193B0\",\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"pointer_color_menu_item_hover\":\"#2193B0\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#2193B0\",\"color_dropdown_item_active\":\"#2193B0\",\"dropdown_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"dropdown_border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"79465965\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.332000000000001,\"content_position\":\"center\",\"_inline_size_tablet\":30,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"46ca1a40\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#0C4769\",\"button_background_hover_color\":\"#0C4769\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"ha_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ha_height_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ha_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"ha_width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(169,44,'_wp_page_template','elementor_header_footer'),(170,44,'_elementor_edit_mode','builder'),(171,44,'_elementor_template_type','wp-post'),(172,44,'_elementor_version','3.15.1'),(174,44,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(175,44,'_elementor_data','[{\"id\":\"e2479d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":8,\"vertical\":8,\"blur\":26,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false}},\"elements\":[{\"id\":\"72d2fbb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":20,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"7de4c9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"8\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/cropped-cropped-Untitled-1-1.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"53fcf15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"4a246d96\",\"elType\":\"widget\",\"settings\":{\"menu\":\"home\",\"navmenu_align\":\"center\",\"submenu_animation\":\"slide_up\",\"animation_line\":\"slide\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_weight\":\"600\",\"dropdown_divider_border\":\"none\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item\":\"globals\\/colors?id=text\",\"toggle_color\":\"globals\\/colors?id=text\",\"toggle_hover_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=primary\",\"bg_color_menu_item\":\"\",\"dropdown_typography_typography\":\"globals\\/typography?id=accent\",\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"background_color_dropdown_item\":\"\"},\"resp_align\":\"left\",\"dropdown_icon\":{\"value\":\"icon icon-menu-11\",\"library\":\"ekiticons\"},\"dropdown_close_icon\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"menu_space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"color_menu_item\":\"#333333\",\"color_menu_item_active\":\"#2193B0\",\"color_dropdown_item\":\"#333333\",\"dropdown_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"toggle_color\":\"#333333\",\"toggle_hover_color\":\"#2193B0\",\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"pointer_color_menu_item_hover\":\"#2193B0\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#2193B0\",\"color_dropdown_item_active\":\"#2193B0\",\"dropdown_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"dropdown_border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"79465965\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.332000000000001,\"content_position\":\"center\",\"_inline_size_tablet\":30,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"46ca1a40\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"ha_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ha_height_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ha_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"ha_width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(176,39,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(177,39,'_eael_custom_js',''),(178,45,'_edit_last','1'),(179,45,'_edit_lock','1691661564:1'),(180,45,'_wp_page_template','elementor_header_footer'),(181,45,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(182,45,'ehf_target_exclude_locations','a:0:{}'),(183,45,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(184,45,'ehf_template_type','type_footer'),(186,45,'_elementor_edit_mode','builder'),(187,45,'_elementor_template_type','wp-post'),(188,45,'_elementor_version','3.15.2'),(190,45,'ekit_post_views_count','4'),(200,48,'_wp_page_template','elementor_header_footer'),(201,48,'_elementor_edit_mode','builder'),(202,48,'_elementor_template_type','wp-post'),(203,48,'_elementor_version','3.15.1'),(204,49,'_wp_page_template','elementor_header_footer'),(205,49,'_elementor_edit_mode','builder'),(206,49,'_elementor_template_type','wp-post'),(207,49,'_elementor_version','3.15.1'),(208,45,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(209,45,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":92.754000000000005}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"button_hover_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6a47f5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"e8b5000\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"801d20e\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"975207f\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"11ea600\"}]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2023 The Sight Avenue | Managed by Ideas Cloud\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(210,50,'_wp_page_template','elementor_header_footer'),(211,50,'_elementor_edit_mode','builder'),(212,50,'_elementor_template_type','wp-post'),(213,50,'_elementor_version','3.15.1'),(214,50,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(215,50,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"40\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"12\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Untitled-3.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"111ed73e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"3e4d0672\",\"elType\":\"widget\",\"settings\":{\"title\":\"Page\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5eeae7dd\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"24224832\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"bcd028c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Favorite\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6846b1\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"2a9b290c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"76bb9409\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fun Fact\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bb2887c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons__switch\":\"\",\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"K\",\"ekit_funfact_title_text\":\"Patient\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_super_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=accent\"},\"ekit_funfact_icon_image\":{\"id\":13,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2021 Medicare | Powered by Risegraph\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"172cbfb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"18d59352\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"e789e42\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c452aa\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"c62c463\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#2193B0\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(216,45,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(217,45,'_eael_custom_js',''),(218,5,'_edit_lock','1691645760:1'),(219,51,'_elementor_edit_mode','builder'),(220,51,'_elementor_template_type','kit'),(222,5,'_wp_page_template','default'),(223,5,'_elementor_page_settings','a:13:{s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#0C4769\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:12:\"My WordPress\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(224,5,'_elementor_data','[]'),(225,52,'_elementor_edit_mode','builder'),(226,52,'_elementor_template_type','kit'),(228,52,'_wp_page_template','default'),(229,52,'_elementor_page_settings','a:13:{s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#0C4769\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:12:\"My WordPress\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(230,52,'_elementor_data','[]'),(231,5,'_elementor_page_assets','a:0:{}'),(232,5,'_elementor_version','3.15.1'),(236,5,'_elementor_css','a:6:{s:4:\"time\";i:1691644215;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:\"\";}'),(239,53,'_wp_attached_file','2023/08/The-Sight-Avenue.webp'),(240,53,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:162;s:4:\"file\";s:29:\"2023/08/The-Sight-Avenue.webp\";s:8:\"filesize\";i:29642;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"The-Sight-Avenue-300x61.webp\";s:5:\"width\";i:300;s:6:\"height\";i:61;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8096;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"The-Sight-Avenue-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7520;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"The-Sight-Avenue-768x156.webp\";s:5:\"width\";i:768;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:30954;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(241,53,'_wp_attachment_image_alt','The Sight Avenue'),(250,55,'_wp_page_template','elementor_header_footer'),(251,55,'_elementor_edit_mode','builder'),(252,55,'_elementor_template_type','wp-post'),(253,55,'_elementor_version','3.15.1'),(254,55,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(255,55,'_elementor_data','[{\"id\":\"e2479d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":8,\"vertical\":8,\"blur\":26,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false}},\"elements\":[{\"id\":\"72d2fbb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":20,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"7de4c9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"8\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/cropped-cropped-Untitled-1-1.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"53fcf15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"4a246d96\",\"elType\":\"widget\",\"settings\":{\"menu\":\"home\",\"navmenu_align\":\"center\",\"submenu_animation\":\"slide_up\",\"animation_line\":\"slide\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_weight\":\"600\",\"dropdown_divider_border\":\"none\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item\":\"globals\\/colors?id=text\",\"toggle_color\":\"globals\\/colors?id=text\",\"toggle_hover_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=primary\",\"bg_color_menu_item\":\"\",\"dropdown_typography_typography\":\"globals\\/typography?id=accent\",\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"background_color_dropdown_item\":\"\"},\"resp_align\":\"left\",\"dropdown_icon\":{\"value\":\"icon icon-menu-11\",\"library\":\"ekiticons\"},\"dropdown_close_icon\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"menu_space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"color_menu_item\":\"#333333\",\"color_menu_item_active\":\"#2193B0\",\"color_dropdown_item\":\"#333333\",\"dropdown_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"toggle_color\":\"#333333\",\"toggle_hover_color\":\"#2193B0\",\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"pointer_color_menu_item_hover\":\"#2193B0\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#2193B0\",\"color_dropdown_item_active\":\"#2193B0\",\"dropdown_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"dropdown_border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"79465965\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.332000000000001,\"content_position\":\"center\",\"_inline_size_tablet\":30,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"46ca1a40\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"ha_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ha_height_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ha_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"ha_width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(256,55,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(257,56,'_wp_page_template','elementor_header_footer'),(258,56,'_elementor_edit_mode','builder'),(259,56,'_elementor_template_type','wp-post'),(260,56,'_elementor_version','3.15.1'),(261,56,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(262,56,'_elementor_data','[{\"id\":\"e2479d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":8,\"vertical\":8,\"blur\":26,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false}},\"elements\":[{\"id\":\"72d2fbb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":20,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"7de4c9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"8\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/cropped-cropped-Untitled-1-1.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"53fcf15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"4a246d96\",\"elType\":\"widget\",\"settings\":{\"menu\":\"home\",\"navmenu_align\":\"center\",\"submenu_animation\":\"slide_up\",\"animation_line\":\"slide\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_weight\":\"600\",\"dropdown_divider_border\":\"none\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item\":\"globals\\/colors?id=text\",\"toggle_color\":\"globals\\/colors?id=text\",\"toggle_hover_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=primary\",\"bg_color_menu_item\":\"\",\"dropdown_typography_typography\":\"globals\\/typography?id=accent\",\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"background_color_dropdown_item\":\"\"},\"resp_align\":\"left\",\"dropdown_icon\":{\"value\":\"icon icon-menu-11\",\"library\":\"ekiticons\"},\"dropdown_close_icon\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"menu_space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"color_menu_item\":\"#333333\",\"color_menu_item_active\":\"#2193B0\",\"color_dropdown_item\":\"#333333\",\"dropdown_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"toggle_color\":\"#333333\",\"toggle_hover_color\":\"#2193B0\",\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"pointer_color_menu_item_hover\":\"#2193B0\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#2193B0\",\"color_dropdown_item_active\":\"#2193B0\",\"dropdown_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"dropdown_border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"79465965\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.332000000000001,\"content_position\":\"center\",\"_inline_size_tablet\":30,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"46ca1a40\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"ha_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ha_height_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ha_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"ha_width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(263,56,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(264,57,'_wp_page_template','elementor_header_footer'),(265,57,'_elementor_edit_mode','builder'),(266,57,'_elementor_template_type','wp-post'),(267,57,'_elementor_version','3.15.1'),(268,57,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(269,57,'_elementor_data','[{\"id\":\"e2479d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":8,\"vertical\":8,\"blur\":26,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"72d2fbb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24.971,\"content_position\":\"center\",\"_inline_size_tablet\":20,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"7de4c9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"53fcf15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.029000000000003,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"4a246d96\",\"elType\":\"widget\",\"settings\":{\"menu\":\"home\",\"navmenu_align\":\"center\",\"submenu_animation\":\"slide_up\",\"animation_line\":\"slide\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_weight\":\"600\",\"dropdown_divider_border\":\"none\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item\":\"globals\\/colors?id=text\",\"toggle_color\":\"globals\\/colors?id=text\",\"toggle_hover_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=primary\",\"bg_color_menu_item\":\"\",\"dropdown_typography_typography\":\"globals\\/typography?id=accent\",\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"background_color_dropdown_item\":\"\"},\"resp_align\":\"left\",\"dropdown_icon\":{\"value\":\"icon icon-menu-11\",\"library\":\"ekiticons\"},\"dropdown_close_icon\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"menu_space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"color_menu_item\":\"#333333\",\"color_menu_item_active\":\"#2193B0\",\"color_dropdown_item\":\"#333333\",\"dropdown_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"toggle_color\":\"#333333\",\"toggle_hover_color\":\"#2193B0\",\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"pointer_color_menu_item_hover\":\"#2193B0\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#2193B0\",\"color_dropdown_item_active\":\"#2193B0\",\"dropdown_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"dropdown_border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"79465965\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.332000000000001,\"content_position\":\"center\",\"_inline_size_tablet\":30,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"46ca1a40\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#0C4769\",\"button_background_hover_color\":\"#0C4769\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"ha_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ha_height_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ha_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"ha_width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(270,57,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(271,58,'_wp_page_template','elementor_header_footer'),(272,58,'_elementor_edit_mode','builder'),(273,58,'_elementor_template_type','wp-post'),(274,58,'_elementor_version','3.15.1'),(275,58,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(276,58,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"40\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"12\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Untitled-3.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"111ed73e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"3e4d0672\",\"elType\":\"widget\",\"settings\":{\"title\":\"Page\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5eeae7dd\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"24224832\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"bcd028c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Favorite\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6846b1\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"2a9b290c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"76bb9409\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fun Fact\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bb2887c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons__switch\":\"\",\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"K\",\"ekit_funfact_title_text\":\"Patient\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_super_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=accent\"},\"ekit_funfact_icon_image\":{\"id\":13,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2021 Medicare | Powered by Risegraph\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"172cbfb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"18d59352\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"e789e42\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c452aa\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"c62c463\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#2193B0\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(277,58,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(278,58,'_elementor_css','a:6:{s:4:\"time\";i:1691644215;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(279,59,'_wp_page_template','elementor_header_footer'),(280,59,'_elementor_edit_mode','builder'),(281,59,'_elementor_template_type','wp-post'),(282,59,'_elementor_version','3.15.1'),(283,59,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(284,59,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"40\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"12\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Untitled-3.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"111ed73e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"3e4d0672\",\"elType\":\"widget\",\"settings\":{\"title\":\"Page\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5eeae7dd\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"24224832\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"bcd028c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Favorite\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6846b1\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"2a9b290c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"76bb9409\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fun Fact\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bb2887c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons__switch\":\"\",\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"K\",\"ekit_funfact_title_text\":\"Patient\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_super_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=accent\"},\"ekit_funfact_icon_image\":{\"id\":13,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2021 Medicare | Powered by Risegraph\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"172cbfb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"18d59352\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"e789e42\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c452aa\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"c62c463\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#2193B0\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(285,59,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(286,59,'_elementor_css','a:6:{s:4:\"time\";i:1691644215;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(287,60,'_wp_page_template','elementor_header_footer'),(288,60,'_elementor_edit_mode','builder'),(289,60,'_elementor_template_type','wp-post'),(290,60,'_elementor_version','3.15.1'),(291,60,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(292,60,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"40\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"111ed73e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"3e4d0672\",\"elType\":\"widget\",\"settings\":{\"title\":\"Page\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5eeae7dd\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"24224832\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"bcd028c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Favorite\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6846b1\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"2a9b290c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"76bb9409\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fun Fact\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bb2887c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons__switch\":\"\",\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"K\",\"ekit_funfact_title_text\":\"Patient\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_super_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=accent\"},\"ekit_funfact_icon_image\":{\"id\":13,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2021 Medicare | Powered by Risegraph\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"172cbfb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"18d59352\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"e789e42\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c452aa\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"c62c463\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#2193B0\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(293,60,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(294,60,'_elementor_css','a:6:{s:4:\"time\";i:1691644215;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(297,61,'_wp_page_template','elementor_header_footer'),(298,61,'_elementor_edit_mode','builder'),(299,61,'_elementor_template_type','wp-post'),(300,61,'_elementor_version','3.15.2'),(301,61,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(302,61,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"40\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"111ed73e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"3e4d0672\",\"elType\":\"widget\",\"settings\":{\"title\":\"Page\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5eeae7dd\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"24224832\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"bcd028c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Favorite\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6846b1\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"2a9b290c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"76bb9409\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fun Fact\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bb2887c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons__switch\":\"\",\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"K\",\"ekit_funfact_title_text\":\"Patient\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_super_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=accent\"},\"ekit_funfact_icon_image\":{\"id\":13,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2021 Medicare | Powered by Risegraph\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"172cbfb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"18d59352\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"e789e42\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c452aa\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"c62c463\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#2193B0\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(303,61,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(304,61,'_elementor_css','a:6:{s:4:\"time\";i:1691645390;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(305,62,'_wp_page_template','elementor_header_footer'),(306,62,'_elementor_edit_mode','builder'),(307,62,'_elementor_template_type','wp-post'),(308,62,'_elementor_version','3.15.2'),(309,62,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(310,62,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"40\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":40,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"111ed73e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"3e4d0672\",\"elType\":\"widget\",\"settings\":{\"title\":\"Page\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5eeae7dd\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"24224832\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"bcd028c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Favorite\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6846b1\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer\",\"schema_support\":\"\",\"layout\":\"vertical\",\"dropdown\":\"none\",\"full_width_dropdown\":\"\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"color_menu_item_hover\":\"globals\\/colors?id=cea7983\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"2a9b290c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"76bb9409\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fun Fact\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bb2887c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons__switch\":\"\",\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"K\",\"ekit_funfact_title_text\":\"Patient\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_super_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=accent\"},\"ekit_funfact_icon_image\":{\"id\":13,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2021 Medicare | Powered by Risegraph\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"172cbfb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"18d59352\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"e789e42\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c452aa\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"c62c463\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#2193B0\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(311,62,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(312,62,'_elementor_css','a:6:{s:4:\"time\";i:1691645390;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(313,63,'_wp_page_template','elementor_header_footer'),(314,63,'_elementor_edit_mode','builder'),(315,63,'_elementor_template_type','wp-post'),(316,63,'_elementor_version','3.15.2'),(317,63,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(318,63,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":92.754000000000005}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6a47f5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"e8b5000\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"801d20e\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"975207f\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"11ea600\"}]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2023 The Sight Avenue | Managed by Ideas Cloud\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"172cbfb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"18d59352\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"e789e42\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c452aa\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"c62c463\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#2193B0\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(319,63,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(320,63,'_elementor_css','a:6:{s:4:\"time\";i:1691645390;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(321,64,'_wp_page_template','elementor_header_footer'),(322,64,'_elementor_edit_mode','builder'),(323,64,'_elementor_template_type','wp-post'),(324,64,'_elementor_version','3.15.2'),(325,64,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(326,64,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":92.754000000000005}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6a47f5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"e8b5000\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"801d20e\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"975207f\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"11ea600\"}]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2023 The Sight Avenue | Managed by Ideas Cloud\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"172cbfb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"18d59352\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"e789e42\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c452aa\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"c62c463\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#2193B0\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(327,64,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(328,65,'_wp_page_template','elementor_header_footer'),(329,65,'_elementor_edit_mode','builder'),(330,65,'_elementor_template_type','wp-post'),(331,65,'_elementor_version','3.15.2'),(332,65,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(333,65,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":92.754000000000005}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6a47f5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"e8b5000\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"801d20e\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"975207f\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"11ea600\"}]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2023 The Sight Avenue | Managed by Ideas Cloud\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"172cbfb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"18d59352\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"e789e42\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c452aa\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"c62c463\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#2193B0\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(334,65,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(335,66,'_wp_page_template','elementor_header_footer'),(336,66,'_elementor_edit_mode','builder'),(337,66,'_elementor_template_type','wp-post'),(338,66,'_elementor_version','3.15.2'),(339,66,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(340,66,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":92.754000000000005}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6a47f5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"e8b5000\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"801d20e\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"975207f\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"11ea600\"}]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2023 The Sight Avenue | Managed by Ideas Cloud\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(341,66,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(342,67,'_wp_page_template','elementor_header_footer'),(343,67,'_elementor_edit_mode','builder'),(344,67,'_elementor_template_type','wp-post'),(345,67,'_elementor_version','3.15.2'),(346,67,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(347,67,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":92.754000000000005}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6a47f5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"e8b5000\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"801d20e\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"975207f\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"11ea600\"}]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2023 The Sight Avenue | Managed by Ideas Cloud\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(348,67,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(349,68,'_wp_page_template','elementor_header_footer'),(350,68,'_elementor_edit_mode','builder'),(351,68,'_elementor_template_type','wp-post'),(352,68,'_elementor_version','3.15.2'),(353,68,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(354,68,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":92.754000000000005}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6a47f5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"e8b5000\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"801d20e\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"975207f\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"11ea600\"}]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2023 The Sight Avenue | Managed by Ideas Cloud\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(355,68,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(356,69,'_wp_page_template','elementor_header_footer'),(357,69,'_elementor_edit_mode','builder'),(358,69,'_elementor_template_type','wp-post'),(359,69,'_elementor_version','3.15.2'),(360,69,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(361,69,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":92.754000000000005}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6a47f5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"e8b5000\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"801d20e\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"975207f\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"11ea600\"}]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2023 The Sight Avenue | Managed by Ideas Cloud\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(362,69,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(371,71,'_wp_page_template','elementor_header_footer'),(372,71,'_elementor_edit_mode','builder'),(373,71,'_elementor_template_type','wp-post'),(374,71,'_elementor_version','3.15.2'),(375,71,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(376,71,'_elementor_data','[{\"id\":\"e2479d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":8,\"vertical\":8,\"blur\":26,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"72d2fbb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24.971,\"content_position\":\"center\",\"_inline_size_tablet\":20,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"7de4c9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"53fcf15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.029000000000003,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"4a246d96\",\"elType\":\"widget\",\"settings\":{\"menu\":\"home\",\"navmenu_align\":\"center\",\"submenu_animation\":\"slide_up\",\"animation_line\":\"slide\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_weight\":\"600\",\"dropdown_divider_border\":\"none\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item\":\"globals\\/colors?id=text\",\"toggle_color\":\"globals\\/colors?id=text\",\"toggle_hover_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=primary\",\"bg_color_menu_item\":\"\",\"dropdown_typography_typography\":\"globals\\/typography?id=accent\",\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"background_color_dropdown_item\":\"\"},\"resp_align\":\"left\",\"dropdown_icon\":{\"value\":\"icon icon-menu-11\",\"library\":\"ekiticons\"},\"dropdown_close_icon\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"menu_space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"color_menu_item\":\"#333333\",\"color_menu_item_active\":\"#2193B0\",\"color_dropdown_item\":\"#333333\",\"dropdown_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"toggle_color\":\"#333333\",\"toggle_hover_color\":\"#2193B0\",\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"pointer_color_menu_item_hover\":\"#2193B0\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#2193B0\",\"color_dropdown_item_active\":\"#2193B0\",\"dropdown_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"dropdown_border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"79465965\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.332000000000001,\"content_position\":\"center\",\"_inline_size_tablet\":30,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"46ca1a40\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#0C4769\",\"button_background_hover_color\":\"#0C4769\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"ha_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ha_height_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ha_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"ha_width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(377,71,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(378,71,'_elementor_css','a:6:{s:4:\"time\";i:1691645389;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:9:\"ekiticons\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(379,72,'_wp_page_template','elementor_header_footer'),(380,72,'_elementor_edit_mode','builder'),(381,72,'_elementor_template_type','wp-post'),(382,72,'_elementor_version','3.15.2'),(383,72,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(384,72,'_elementor_data','[{\"id\":\"e2479d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":8,\"vertical\":8,\"blur\":26,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"72d2fbb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24.971,\"content_position\":\"center\",\"_inline_size_tablet\":20,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"7de4c9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"53fcf15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.029000000000003,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"4a246d96\",\"elType\":\"widget\",\"settings\":{\"menu\":\"home\",\"navmenu_align\":\"center\",\"submenu_animation\":\"slide_up\",\"animation_line\":\"slide\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_weight\":\"600\",\"dropdown_divider_border\":\"none\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item\":\"globals\\/colors?id=text\",\"toggle_color\":\"globals\\/colors?id=text\",\"toggle_hover_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=primary\",\"bg_color_menu_item\":\"\",\"dropdown_typography_typography\":\"globals\\/typography?id=accent\",\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"background_color_dropdown_item\":\"\"},\"resp_align\":\"left\",\"dropdown_icon\":{\"value\":\"icon icon-menu-11\",\"library\":\"ekiticons\"},\"dropdown_close_icon\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"menu_space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"color_menu_item\":\"#333333\",\"color_menu_item_active\":\"#2193B0\",\"color_dropdown_item\":\"#333333\",\"dropdown_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"toggle_color\":\"#333333\",\"toggle_hover_color\":\"#2193B0\",\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"pointer_color_menu_item_hover\":\"#2193B0\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#2193B0\",\"color_dropdown_item_active\":\"#2193B0\",\"dropdown_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"dropdown_border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"79465965\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.332000000000001,\"content_position\":\"center\",\"_inline_size_tablet\":30,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"46ca1a40\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#0C4769\",\"button_background_hover_color\":\"#0C4769\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"ha_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ha_height_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ha_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"ha_width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(385,72,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(386,72,'_elementor_css','a:6:{s:4:\"time\";i:1691645389;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:9:\"ekiticons\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(387,73,'_wp_page_template','elementor_header_footer'),(388,73,'_elementor_edit_mode','builder'),(389,73,'_elementor_template_type','wp-post'),(390,73,'_elementor_version','3.15.2'),(391,73,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(392,73,'_elementor_data','[{\"id\":\"e2479d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":8,\"vertical\":8,\"blur\":26,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"72d2fbb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24.971,\"content_position\":\"center\",\"_inline_size_tablet\":20,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"7de4c9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"53fcf15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.029000000000003,\"content_position\":\"center\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"4a246d96\",\"elType\":\"widget\",\"settings\":{\"menu\":\"home\",\"navmenu_align\":\"center\",\"submenu_animation\":\"slide_up\",\"animation_line\":\"slide\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_weight\":\"600\",\"dropdown_divider_border\":\"none\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=primary\",\"color_dropdown_item\":\"globals\\/colors?id=text\",\"toggle_color\":\"globals\\/colors?id=text\",\"toggle_hover_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"dropdown_border_color\":\"globals\\/colors?id=primary\",\"bg_color_menu_item\":\"\",\"dropdown_typography_typography\":\"globals\\/typography?id=accent\",\"menu_typography_typography\":\"globals\\/typography?id=accent\",\"background_color_dropdown_item\":\"\"},\"resp_align\":\"left\",\"dropdown_icon\":{\"value\":\"icon icon-menu-11\",\"library\":\"ekiticons\"},\"dropdown_close_icon\":{\"value\":\"icon icon-cross\",\"library\":\"ekiticons\"},\"menu_space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"color_menu_item\":\"#333333\",\"color_menu_item_active\":\"#2193B0\",\"color_dropdown_item\":\"#333333\",\"dropdown_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"toggle_color\":\"#333333\",\"toggle_hover_color\":\"#2193B0\",\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"pointer_color_menu_item_hover\":\"#2193B0\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#2193B0\",\"color_dropdown_item_active\":\"#2193B0\",\"dropdown_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"dropdown_border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false},{\"id\":\"79465965\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.332000000000001,\"content_position\":\"center\",\"_inline_size_tablet\":30,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"46ca1a40\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#0C4769\",\"button_background_hover_color\":\"#0C4769\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"ha_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ha_height_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ha_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"ha_width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(393,73,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(394,73,'_elementor_css','a:6:{s:4:\"time\";i:1691645389;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:9:\"ekiticons\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(395,74,'_wp_page_template','elementor_header_footer'),(396,74,'_elementor_edit_mode','builder'),(397,74,'_elementor_template_type','wp-post'),(398,74,'_elementor_version','3.15.2'),(399,74,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(400,74,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":92.754000000000005}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6a47f5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"e8b5000\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"801d20e\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"975207f\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"11ea600\"}]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2023 The Sight Avenue | Managed by Ideas Cloud\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(401,74,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(402,74,'_elementor_css','a:6:{s:4:\"time\";i:1691645682;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(403,75,'_wp_page_template','elementor_header_footer'),(404,75,'_elementor_edit_mode','builder'),(405,75,'_elementor_template_type','wp-post'),(406,75,'_elementor_version','3.15.2'),(407,75,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(408,75,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":92.754000000000005}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6a47f5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"e8b5000\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"801d20e\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"975207f\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"11ea600\"}]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2023 The Sight Avenue | Managed by Ideas Cloud\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(409,75,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(410,75,'_elementor_css','a:6:{s:4:\"time\";i:1691645682;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(411,76,'_wp_page_template','elementor_header_footer'),(412,76,'_elementor_edit_mode','builder'),(413,76,'_elementor_template_type','wp-post'),(414,76,'_elementor_version','3.15.2'),(415,76,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(416,76,'_elementor_data','[{\"id\":\"29f4c55e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"column_position\":\"top\",\"content_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"3c7d720b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"5287811e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/The-Sight-Avenue.webp\",\"alt\":\"The Sight Avenue\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"766a88e8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":92.754000000000005}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"499a25ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\",\"text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"button_hover_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6a47f5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"e8b5000\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"801d20e\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"975207f\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"11ea600\"}]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176c6c67\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1e95e942\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"1f2d8944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e5c5c57\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"ma_el_slider_delay\":\"5000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"296e5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2549e31e\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 2023 The Sight Avenue | Managed by Ideas Cloud\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"caption_typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false}],\"isInner\":false}]'),(417,76,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(418,76,'_elementor_css','a:6:{s:4:\"time\";i:1691645682;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(419,77,'_wp_page_template','elementor_header_footer'),(420,77,'_elementor_edit_mode','builder'),(421,77,'_elementor_template_type','wp-page'),(422,77,'_elementor_version','3.15.2'),(423,78,'_wp_page_template','elementor_header_footer'),(424,78,'_elementor_edit_mode','builder'),(425,78,'_elementor_template_type','wp-page'),(426,78,'_elementor_version','3.15.2'),(427,37,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(428,37,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":96.843000000000004}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Femtosecond LASIK is one of the most preferred\\u00a0LASIK treatments. The procedure can correct several other errors other than refractive errors.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>it is suitable for patients with dry eyes, contact lens intolerance, and playing contact sports. It has already helped millions achieve freedom from glasses and contacts.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Child Eyecare\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Since good vision is an elementary prerequisite for academic performance and social interaction and influences every facet of a child\\u2019s life, regular eye examinations are a must.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Glaucoma is an eye disease in which eye pressure rises which causes damage to the nerve sited in the back of the eye (optic nerve) and leads to loss of eyesight.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this the natural lens in the eye becomes cloudy and hard causing unclear vision and disturbance in daily lifestyle. It is also called Motiabind in India and it can happen to even newborn babies.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(429,79,'_wp_page_template','elementor_header_footer'),(430,79,'_elementor_edit_mode','builder'),(431,79,'_elementor_template_type','wp-page'),(432,79,'_elementor_version','3.15.2'),(433,79,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(434,79,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ba8d0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"472ee4da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.174999999999997,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"16fed929\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Future\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"335eaadf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Latest Features\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a184f73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<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.\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39cd0eb8\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.825000000000003,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Faster Process\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"connectivity\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"branch everywhere\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"best teller\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(435,37,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(436,37,'_eael_custom_js',''),(437,37,'_eael_widget_elements','a:3:{s:10:\"ninja-form\";s:10:\"ninja-form\";s:12:\"feature-list\";s:12:\"feature-list\";s:14:\"filter-gallery\";s:14:\"filter-gallery\";}'),(445,81,'_wp_attached_file','2023/08/Screenshot-2023-08-10-11.47.56-AM.webp'),(446,81,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1366;s:6:\"height\";i:768;s:4:\"file\";s:46:\"2023/08/Screenshot-2023-08-10-11.47.56-AM.webp\";s:8:\"filesize\";i:31712;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Screenshot-2023-08-10-11.47.56-AM-300x169.webp\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7634;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-08-10-11.47.56-AM-1024x576.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31704;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Screenshot-2023-08-10-11.47.56-AM-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4138;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"Screenshot-2023-08-10-11.47.56-AM-768x432.webp\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22772;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(447,82,'_wp_page_template','elementor_header_footer'),(448,82,'_elementor_edit_mode','builder'),(449,82,'_elementor_template_type','wp-page'),(450,82,'_elementor_version','3.15.2'),(451,82,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(452,82,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ba8d0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"472ee4da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.174999999999997,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"16fed929\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Future\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"335eaadf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Latest Features\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a184f73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<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.\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39cd0eb8\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.825000000000003,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Faster Process\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"connectivity\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"branch everywhere\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"best teller\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(453,82,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(454,83,'_wp_page_template','elementor_header_footer'),(455,83,'_elementor_edit_mode','builder'),(456,83,'_elementor_template_type','wp-page'),(457,83,'_elementor_version','3.15.2'),(458,83,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(459,83,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ba8d0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"472ee4da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.174999999999997,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"16fed929\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Future\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"335eaadf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Latest Features\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a184f73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<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.\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39cd0eb8\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.825000000000003,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Faster Process\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"connectivity\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"branch everywhere\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"best teller\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(460,83,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(461,84,'_wp_page_template','elementor_header_footer'),(462,84,'_elementor_edit_mode','builder'),(463,84,'_elementor_template_type','wp-page'),(464,84,'_elementor_version','3.15.2'),(465,84,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(466,84,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"094939e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ba8d0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"472ee4da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.174999999999997,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"16fed929\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Future\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"335eaadf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Latest Features\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a184f73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<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.\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39cd0eb8\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.825000000000003,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Faster Process\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"connectivity\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"branch everywhere\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"best teller\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(467,84,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(475,86,'_wp_page_template','elementor_header_footer'),(476,86,'_elementor_edit_mode','builder'),(477,86,'_elementor_template_type','wp-page'),(478,86,'_elementor_version','3.15.2'),(479,86,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(480,86,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"094939e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ba8d0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"472ee4da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.174999999999997,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"16fed929\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Future\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"335eaadf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Latest Features\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a184f73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<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.\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39cd0eb8\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.825000000000003,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Faster Process\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"connectivity\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"branch everywhere\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"best teller\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(481,86,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(482,87,'_wp_page_template','elementor_header_footer'),(483,87,'_elementor_edit_mode','builder'),(484,87,'_elementor_template_type','wp-page'),(485,87,'_elementor_version','3.15.2'),(486,87,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(487,87,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"094939e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ba8d0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"472ee4da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.174999999999997,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"16fed929\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Future\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"335eaadf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Latest Features\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a184f73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<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.\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39cd0eb8\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.825000000000003,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Faster Process\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"connectivity\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"branch everywhere\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"best teller\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(488,87,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(489,88,'_wp_page_template','elementor_header_footer'),(490,88,'_elementor_edit_mode','builder'),(491,88,'_elementor_template_type','wp-page'),(492,88,'_elementor_version','3.15.2'),(493,88,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}');
INSERT INTO `wp_postmeta` VALUES (494,88,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"094939e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ba8d0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(495,88,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(503,90,'_wp_page_template','elementor_header_footer'),(504,90,'_elementor_edit_mode','builder'),(505,90,'_elementor_template_type','wp-page'),(506,90,'_elementor_version','3.15.2'),(507,90,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(508,90,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"094939e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ba8d0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(509,90,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(510,91,'_wp_page_template','elementor_header_footer'),(511,91,'_elementor_edit_mode','builder'),(512,91,'_elementor_template_type','wp-page'),(513,91,'_elementor_version','3.15.2'),(514,91,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(515,91,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"094939e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ba8d0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(516,91,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(517,92,'_wp_page_template','elementor_header_footer'),(518,92,'_elementor_edit_mode','builder'),(519,92,'_elementor_template_type','wp-page'),(520,92,'_elementor_version','3.15.2'),(521,92,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(522,92,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ba8d0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(523,92,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(524,39,'_elementor_css','a:6:{s:4:\"time\";i:1691654325;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:9:\"ekiticons\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(525,45,'_elementor_css','a:6:{s:4:\"time\";i:1691654325;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(526,93,'_wp_page_template','elementor_header_footer'),(527,93,'_elementor_edit_mode','builder'),(528,93,'_elementor_template_type','wp-page'),(529,93,'_elementor_version','3.15.2'),(530,93,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(531,93,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ba8d0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(532,93,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(533,94,'_wp_page_template','elementor_header_footer'),(534,94,'_elementor_edit_mode','builder'),(535,94,'_elementor_template_type','wp-page'),(536,94,'_elementor_version','3.15.2'),(537,94,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(538,94,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ba8d0a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(539,94,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(540,95,'_wp_page_template','elementor_header_footer'),(541,95,'_elementor_edit_mode','builder'),(542,95,'_elementor_template_type','wp-page'),(543,95,'_elementor_version','3.15.2'),(544,95,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(545,95,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(546,95,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(547,37,'_oembed_bb51db25f10256c2180ff1fa30aa520f','<iframe title=\"Eye Flu - Burst your Myths\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/co1x4aYIEF8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(548,37,'_oembed_time_bb51db25f10256c2180ff1fa30aa520f','1691655091'),(549,96,'_wp_page_template','elementor_header_footer'),(550,96,'_elementor_edit_mode','builder'),(551,96,'_elementor_template_type','wp-page'),(552,96,'_elementor_version','3.15.2'),(553,96,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(554,96,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(555,96,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(556,97,'_wp_page_template','elementor_header_footer'),(557,97,'_elementor_edit_mode','builder'),(558,97,'_elementor_template_type','wp-page'),(559,97,'_elementor_version','3.15.2'),(560,97,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(561,97,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(562,97,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(563,98,'_wp_page_template','elementor_header_footer'),(564,98,'_elementor_edit_mode','builder'),(565,98,'_elementor_template_type','wp-page'),(566,98,'_elementor_version','3.15.2'),(567,98,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(568,98,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"c771536\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(569,98,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(571,99,'_wp_page_template','elementor_header_footer'),(572,99,'_elementor_edit_mode','builder'),(573,99,'_elementor_template_type','wp-page'),(574,99,'_elementor_version','3.15.2'),(575,99,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(576,99,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"c771536\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(577,99,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(578,99,'_elementor_css','a:6:{s:4:\"time\";i:1691655271;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:9:\"ekiticons\";i:12;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(579,100,'_wp_page_template','elementor_header_footer'),(580,100,'_elementor_edit_mode','builder'),(581,100,'_elementor_template_type','wp-page'),(582,100,'_elementor_version','3.15.2'),(583,100,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(584,100,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"c771536\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(585,100,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(586,100,'_elementor_css','a:6:{s:4:\"time\";i:1691655271;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:9:\"ekiticons\";i:12;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(587,101,'_wp_page_template','elementor_header_footer'),(588,101,'_elementor_edit_mode','builder'),(589,101,'_elementor_template_type','wp-page'),(590,101,'_elementor_version','3.15.2'),(591,101,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(592,101,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(593,101,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(594,101,'_elementor_css','a:6:{s:4:\"time\";i:1691655271;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:9:\"ekiticons\";i:12;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(604,103,'_wp_page_template','elementor_header_footer'),(605,103,'_elementor_edit_mode','builder'),(606,103,'_elementor_template_type','wp-page'),(607,103,'_elementor_version','3.15.2'),(608,103,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(609,103,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(610,103,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(611,104,'_wp_page_template','elementor_header_footer'),(612,104,'_elementor_edit_mode','builder'),(613,104,'_elementor_template_type','wp-page'),(614,104,'_elementor_version','3.15.2'),(615,104,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(616,104,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(617,104,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(618,105,'_wp_page_template','elementor_header_footer'),(619,105,'_elementor_edit_mode','builder'),(620,105,'_elementor_template_type','wp-page'),(621,105,'_elementor_version','3.15.2'),(622,105,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}');
INSERT INTO `wp_postmeta` VALUES (623,105,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":96.843000000000004}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Femtosecond LASIK is one of the most preferred\\u00a0<a href=\\\"https:\\/\\/thesightavenue.com\\/blog\\/lasik-surgery-treatment-and-recovery-tips\\\"><b>LASIK treatments<\\/b><\\/a>. The procedure can correct several other errors other than refractive errors.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(624,105,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(632,107,'_wp_page_template','elementor_header_footer'),(633,107,'_elementor_edit_mode','builder'),(634,107,'_elementor_template_type','wp-page'),(635,107,'_elementor_version','3.15.2'),(636,107,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(637,107,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":96.843000000000004}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Femtosecond LASIK is one of the most preferred\\u00a0<a href=\\\"https:\\/\\/thesightavenue.com\\/blog\\/lasik-surgery-treatment-and-recovery-tips\\\"><b>LASIK treatments<\\/b><\\/a>. The procedure can correct several other errors other than refractive errors.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(638,107,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(639,108,'_wp_page_template','elementor_header_footer'),(640,108,'_elementor_edit_mode','builder'),(641,108,'_elementor_template_type','wp-page'),(642,108,'_elementor_version','3.15.2'),(643,108,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(644,108,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":96.843000000000004}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Femtosecond LASIK is one of the most preferred\\u00a0<a href=\\\"https:\\/\\/thesightavenue.com\\/blog\\/lasik-surgery-treatment-and-recovery-tips\\\"><b>LASIK treatments<\\/b><\\/a>. The procedure can correct several other errors other than refractive errors.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(645,108,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(646,109,'_wp_page_template','elementor_header_footer'),(647,109,'_elementor_edit_mode','builder'),(648,109,'_elementor_template_type','wp-page'),(649,109,'_elementor_version','3.15.2'),(650,109,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(651,109,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":96.843000000000004}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Femtosecond LASIK is one of the most preferred\\u00a0LASIK treatments. The procedure can correct several other errors other than refractive errors.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>it is suitable for patients with dry eyes, contact lens intolerance, and playing contact sports. It has already helped millions achieve freedom from glasses and contacts.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(652,109,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(660,111,'_wp_page_template','elementor_header_footer'),(661,111,'_elementor_edit_mode','builder'),(662,111,'_elementor_template_type','wp-page'),(663,111,'_elementor_version','3.15.2'),(664,111,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(665,111,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":96.843000000000004}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Femtosecond LASIK is one of the most preferred\\u00a0LASIK treatments. The procedure can correct several other errors other than refractive errors.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>it is suitable for patients with dry eyes, contact lens intolerance, and playing contact sports. It has already helped millions achieve freedom from glasses and contacts.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(666,111,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(667,112,'_wp_page_template','elementor_header_footer'),(668,112,'_elementor_edit_mode','builder'),(669,112,'_elementor_template_type','wp-page'),(670,112,'_elementor_version','3.15.2'),(671,112,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(672,112,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":96.843000000000004}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Femtosecond LASIK is one of the most preferred\\u00a0LASIK treatments. The procedure can correct several other errors other than refractive errors.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>it is suitable for patients with dry eyes, contact lens intolerance, and playing contact sports. It has already helped millions achieve freedom from glasses and contacts.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Myopia Control Lenses\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt\\u00a0<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(673,112,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(674,113,'_wp_page_template','elementor_header_footer'),(675,113,'_elementor_edit_mode','builder'),(676,113,'_elementor_template_type','wp-page'),(677,113,'_elementor_version','3.15.2'),(678,113,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(679,113,'_elementor_data','[{\"id\":\"39c3f221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":687,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color_b\":\"#2193B0\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"gap\":\"wide\",\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":433,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"43c94657\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.814999999999998,\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"_inline_size_mobile\":100,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"170\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30772c87\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Hospital\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a744b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are a reliable partner\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":4,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"800\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583d1c8c\",\"elType\":\"widget\",\"settings\":{\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab8d0be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"35395b9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.936999999999998,\"content_position\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":70},\"elements\":[{\"id\":\"72613f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find a Doctor\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFC127\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"70ff62d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.061999999999998,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"2a57d196\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF\",\"ekit_video_popup_btn_text_color\":\"#2193B0\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FFFFFF\",\"ekit_video_popup_btn_hover_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_border_style\":\"solid\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"globals\\/colors?id=primary\",\"ekit_video_popup_btn_hover_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ddb974\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.122999999999998,\"background_color\":\"#02010100\",\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":38,\"vertical\":39,\"blur\":83,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.18)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"504ceba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-1.png\"},\"image_size\":\"full\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8513e89\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b7f084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0fb4a46\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Live Session\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64d3eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Eye Flu Prevention\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ba5882\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"609cbef\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#FFC127\",\"hover_color\":\"#0C4769\",\"border_color\":\"#FFC127\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@thesightavenue\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"85b19dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b8c306f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=co1x4aYIEF8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Screenshot-2023-08-10-11.47.56-AM.webp\",\"id\":81,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e8303b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":557,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":114,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"540059b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.872,\"animation\":\"none\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_position_mobile\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"384cdd1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"465\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"410f3385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.084000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"57c80d35\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fb4bee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Medicare\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1816c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\u00a0<\\/p><p>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<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acd122f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\",\"border_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"shrink\",\"background_color\":\"#2193B0\",\"hover_color\":\"#2193B0\",\"border_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c50503f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3662c0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.158000000000001,\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a020eee\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f09ad08\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"2\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"},{\"id\":\"1a0d2924\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have experienced doctors\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ff2f667\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"size\":\"md\",\"ha_fixed_size_toggle\":\"yes\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#B1B1B100\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1810639f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.841999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"51cbed2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/main-2-2.png\"},\"hover_animation\":\"grow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":96.843000000000004}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2058c64\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12debe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f72735e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solutions\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b26ceea\",\"elType\":\"widget\",\"settings\":{\"title\":\"That we provide\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b48ac9c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"452fd97a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"747d5155\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"7d99df83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"4729016d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-rocket\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bbb3f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lasik\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"header_size\":\"h4\",\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1634f58e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Femtosecond LASIK is one of the most preferred\\u00a0LASIK treatments. The procedure can correct several other errors other than refractive errors.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1dda47a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"2299cf5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1463fdff\",\"elType\":\"widget\",\"settings\":{\"title\":\"S M I L E\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f257d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>it is suitable for patients with dry eyes, contact lens intolerance, and playing contact sports. It has already helped millions achieve freedom from glasses and contacts.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e5c03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"da40199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"86d85ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Implantable Collamer Lens (ICL)\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c126fb3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bf975d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6b8a5720\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"30367cbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-link\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3b3ae644\",\"elType\":\"widget\",\"settings\":{\"title\":\"Child Eyecare\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14597bcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Since good vision is an elementary prerequisite for academic performance and social interaction and influences every facet of a child\\u2019s life, regular eye examinations are a must.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c0c10f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"66ae92eb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5081b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Glaucoma Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6ffba3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Glaucoma is an eye disease in which eye pressure rises which causes damage to the nerve sited in the back of the eye (optic nerve) and leads to loss of eyesight.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf27d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"animation\":\"none\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"0e7f078\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-deal\",\"library\":\"ekiticons\"},\"align\":\"left\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d129282\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cataract Services\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"typography_text_transform\":\"capitalize\",\"title_color\":\"#333333\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc7a1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this the natural lens in the eye becomes cloudy and hard causing unclear vision and disturbance in daily lifestyle. It is also called Motiabind in India and it can happen to even newborn babies.<\\/p>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ce14486\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"40\",\"background_position\":\"center right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"66\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"42b82a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1ea66b44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"thousand_separator\":\"\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2f88b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6cd9067b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":435,\"title\":\"Happy Clients\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Spesialist Doctor\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4b694b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2c8318d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1250,\"suffix\":\"+\",\"title\":\"Plants Types\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"counter-title\":\"Our Patient\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"33e4cad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"166d8077\",\"elType\":\"widget\",\"settings\":{\"ending_number\":350,\"suffix\":\"+\",\"title\":\"Projects Done\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_weight\":\"600\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"\",\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"typography_title_typography\":\"globals\\/typography?id=accent\"},\"counter-title\":\"Big Awards\",\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f3166f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a71237b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"498e5fdf\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"p\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ca0f47b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us?\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11c102eb\",\"elType\":\"widget\",\"settings\":{\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28467ef7\",\"elType\":\"widget\",\"settings\":{\"eael_feature_list\":[{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"Lorem ipsum dolor sit amet\",\"eael_feature_list_content\":\"\",\"_id\":\"385a18d\",\"eael_feature_list_img\":{\"id\":27,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-2.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"consectetur adipiscing elit\",\"eael_feature_list_content\":\"\",\"_id\":\"f4de214\",\"eael_feature_list_img\":{\"id\":28,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-3.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"It is a long established fact that a reader\",\"eael_feature_list_content\":\"\",\"_id\":\"c0a3645\",\"eael_feature_list_img\":{\"id\":29,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-4.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"If you are going to use a passage of Lorem Ipsum\",\"eael_feature_list_content\":\"\",\"_id\":\"2c65123\",\"eael_feature_list_img\":{\"id\":30,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-5.png\"}},{\"eael_feature_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_feature_list_title\":\"combined with a handful of model\",\"eael_feature_list_content\":\"\",\"_id\":\"fd154c2\",\"eael_feature_list_img\":{\"id\":31,\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-6.png\"}}],\"eael_feature_list_icon_shape_view\":\"framed\",\"eael_feature_list_space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"eael_feature_list_icon_background_background\":\"classic\",\"eael_feature_list_icon_background_color\":\"#2193B0\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_circle_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"eael_feature_list_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_icon_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"eael_feature_list_icon_border_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"eael_feature_list_title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_feature_list_title_typography_font_family\":\"Montserrat\",\"eael_feature_list_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"eael_feature_list_title_typography_font_weight\":\"400\",\"eael_feature_list_title_typography_line_height\":{\"unit\":\"em\",\"size\":2.1000000000000001,\"sizes\":[]},\"eael_feature_list_description_typography_font_family\":\"Montserrat\",\"eael_feature_list_description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_feature_list_icon_background_color\":\"globals\\/colors?id=primary\",\"eael_feature_list_secondary_color\":\"\",\"eael_feature_list_icon_color\":\"globals\\/colors?id=primary\"},\"eael_feature_list_title_size\":\"p\"},\"elements\":[],\"widgetType\":\"eael-feature-list\"}],\"isInner\":false},{\"id\":\"11dede3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1e681b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"20\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"450\"},\"hover_animation\":\"grow\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7060650b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":244,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"ma_el_slider_delay\":\"5000\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"57a438d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.789000000000001,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"310ad6fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"File a complaint with us\",\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_font_style\":\"normal\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d910c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5fc36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.081000000000003,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"62a26e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Appointment\",\"size\":\"md\",\"button_text_color\":\"#2193B0\",\"button_background_hover_color\":\"#2193B0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"44\",\"bottom\":\"44\",\"left\":\"44\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"hover_animation\":\"shrink\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"border_color\":\"#FFFFFF\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f13be9\",\"elType\":\"section\",\"settings\":{\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a8bda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e1571f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"title_color\":\"#2193B0\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15c38f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our patients say\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"typography_font_style\":\"normal\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4a1449\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style2\",\"ekit_testimonial_data\":[{\"client_name\":\"Testimonial #1\",\"_id\":\"51a46ae\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #2\",\"_id\":\"bd31f49\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #3\",\"_id\":\"55bd6b7\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"client_name\":\"Testimonial #4\",\"designation\":\"Designation\",\"review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt \",\"client_photo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"_id\":\"ad87622\",\"client_logo_active\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_speed\":2000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":8,\"blur\":26,\"spread\":0,\"color\":\"rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0)\"},\"ekit_testimonial_section_wraper_vertical_alignment\":\"flex-start\",\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_section_wraper_use_height\":\"\",\"ekit_testimonial_description_color\":\"#818181\",\"ekit_testimonial_section_wathermark_color\":\"#DEDEDE\",\"ekit_testimonial_title_separator_color\":\"#2193B0\",\"ekit_testimonial_client_name_normal_color\":\"#333333\",\"ekit_testimonial_designation_normal_color\":\"#818181\",\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"__globals__\":{\"ekit_testimonial_description_color\":\"\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_title_separator_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_designation_normal_color\":\"\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_active_border_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_layout_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_nav_font_color_normal\":\"globals\\/colors?id=text\",\"ekit_testimonial_nav_background_hover_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=accent\",\"ekit_testimonial_layout_active_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_testimonial_wartermark_enable\":\"\",\"ekit_testimonial_wartermark_custom_position\":\"yes\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"ekit_testimonial_show_arrow\":\"yes\",\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-arrow-left\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_testimonial_layout_active_border_color\":\"#F8F8F8\",\"ekit_testimonial_client_dot_active_background_color\":\"#DEDEDE\",\"ekit_testimonial_nav_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_nav_right_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_left_icon\":{\"unit\":\"%\",\"size\":-8,\"sizes\":[]},\"ekit_testimonial_nav_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_testimonial_nav_background_normal_background\":\"classic\",\"ekit_testimonial_nav_background_normal_color\":\"#FFFFFF\",\"ekit_testimonial_nav_font_color_hover\":\"#FFFFFF\",\"ekit_testimonial_nav_background_hover_background\":\"classic\",\"ekit_testimonial_slidetoshow\":3,\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_background_color\":\"#F8F8F8\",\"ekit_testimonial_layout_active_background_background\":\"classic\",\"ekit_testimonial_title_separator_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"ekit_testimonial_client_name_typography_typography\":\"custom\",\"ekit_testimonial_client_name_typography_font_family\":\"Montserrat\",\"ekit_testimonial_client_name_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_client_name_typography_font_weight\":\"600\",\"ekit_testimonial_client_dot_background_color\":\"#F8F8F8\",\"ekit_testimonial_nav_font_color_normal\":\"#333333\",\"ekit_testimonial_nav_background_hover_color\":\"#2193B0\"},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73312f06\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6732a3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ma_el_slider_delay\":\"5000\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"316a8f\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_slide_style\":\"banner_logo_image\",\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"Title #1\",\"_id\":\"f7d34de\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #2\",\"_id\":\"e868afb\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #3\",\"_id\":\"b63c6b5\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #4\",\"_id\":\"b08b43d\",\"ekit_client_logo_image_normal\":{\"id\":\"23\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-1.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"e02c34a\",\"ekit_client_logo_list_title\":\"Title #5\",\"ekit_client_logo_image_normal\":{\"id\":\"24\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-4.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #6\",\"ekit_client_logo_image_normal\":{\"id\":\"22\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-5.png\"},\"_id\":\"d0b48cd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"_id\":\"5c17a92\",\"ekit_client_logo_list_title\":\"Title #7\",\"ekit_client_logo_image_normal\":{\"id\":\"21\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-3.png\"},\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}},{\"ekit_client_logo_list_title\":\"Title #8\",\"ekit_client_logo_image_normal\":{\"id\":\"25\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/Logo-2.png\"},\"_id\":\"17d72bd\",\"ekit_client_logo_image_hover\":{\"id\":\"13\",\"url\":\"https:\\/\\/salandingpage.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/08\\/placeholder.png\"}}],\"ekit_client_logo_container_bg_color_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_client_logo_background_group_color\":\"#FFFFFF\",\"ekit_client_logo_hover_animation_driction\":\"hover_from_left\",\"ekit_client_logo_hover_animation_color_background\":\"classic\",\"ekit_client_logo_hover_animation_color_color\":\"#DEDEDE\",\"__globals__\":{\"ekit_client_logo_client_logo_background_group_color\":\"\",\"ekit_client_logo_container_bg_color_color\":\"\",\"ekit_client_logo_hover_animation_color_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_background_color\":\"globals\\/colors?id=cea7983\",\"ekit_client_logo_dot_active_background_color\":\"globals\\/colors?id=accent\"},\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b90ed69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"content_width\":{\"unit\":\"px\",\"size\":655,\"sizes\":[]},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_position\":\"middle\",\"ma_el_slider_delay\":\"5000\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"51f60d76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":21,\"vertical\":32,\"blur\":85,\"spread\":-27,\"color\":\"rgba(0, 0, 0, 0.28)\"},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"none\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"78d995f6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"ma_el_slider_delay\":\"5000\"},\"elements\":[{\"id\":\"6c6f2645\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.759,\"content_position\":\"center\",\"align\":\"center\",\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1c68ac3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"secondary_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"26800408\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.241,\"ma_el_slider_delay\":\"5000\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"1a715101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Service\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\"},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2931b7c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"511 - 589 - 6656\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff269ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63f1d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dca7ab\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":6,\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"0ba4426\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"a438666\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"23cdf71\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"cdd61e9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"667bb91\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"bf343c2\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"1a5fab8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(680,113,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(681,37,'_elementor_css','a:6:{s:4:\"time\";i:1694238635;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:9:\"ekiticons\";i:12;s:8:\"fa-solid\";}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=114 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2023-08-09 05:28:51','2023-08-09 05:28:51','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2023-08-09 05:28:51','2023-08-09 05:28:51','',0,'https://salandingpage.in8.cdn-alpha.com/?p=1',0,'post','',1),(2,1,'2023-08-09 05:28:51','2023-08-09 05:28:51','<!-- 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://salandingpage.in8.cdn-alpha.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2023-08-09 05:28:51','2023-08-09 05:28:51','',0,'https://salandingpage.in8.cdn-alpha.com/?page_id=2',0,'page','',0),(3,1,'2023-08-09 05:28:51','2023-08-09 05:28:51','<!-- 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://salandingpage.in8.cdn-alpha.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2023-08-09 05:28:51','2023-08-09 05:28:51','',0,'https://salandingpage.in8.cdn-alpha.com/?page_id=3',0,'page','',0),(4,1,'2023-08-09 05:33:22','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-08-09 05:33:22','0000-00-00 00:00:00','',0,'https://salandingpage.in8.cdn-alpha.com/?p=4',0,'post','',0),(5,1,'2023-08-09 05:35:30','2023-08-09 05:35:30','','Default Kit','','publish','closed','closed','','default-kit','','','2023-08-09 16:49:29','2023-08-09 11:19:29','',0,'https://salandingpage.in8.cdn-alpha.com/?p=5',0,'elementor_library','',0),(6,1,'2023-08-09 05:43:40','2023-08-09 05:43:40','','Medicare - Hospital & Health Services Template Kit','','publish','closed','closed','','medicare-hospital-health-services-template-kit','','','2023-08-09 05:43:40','2023-08-09 05:43:40','',0,'https://salandingpage.in8.cdn-alpha.com/?envato_tk_import=medicare-hospital-health-services-template-kit',0,'envato_tk_import','',0),(8,1,'2023-08-09 06:40:19','2023-08-09 06:40:19','','cropped-cropped-Untitled-1-1.png','','inherit','open','closed','','cropped-cropped-untitled-1-1-png','','','2023-08-09 06:40:19','2023-08-09 06:40:19','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1.png',0,'attachment','image/png',0),(9,1,'2023-08-09 06:40:20','2023-08-09 06:40:20','<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"558\" height=\"123\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1.png 558w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1-300x66.png 300w\" sizes=\"(max-width: 558px) 100vw, 558px\" />															\n			<a href=\"#\">\n						Appointment\n					</a>','Header','','publish','closed','closed','','header','','','2023-08-09 06:40:21','2023-08-09 06:40:21','',0,'https://salandingpage.in8.cdn-alpha.com/?elementor_library=header',0,'elementor_library','',0),(10,1,'2023-08-09 06:40:21','2023-08-09 06:40:21','','Header','','inherit','closed','closed','','9-revision-v1','','','2023-08-09 06:40:21','2023-08-09 06:40:21','',9,'https://salandingpage.in8.cdn-alpha.com/?p=10',0,'revision','',0),(11,1,'2023-08-09 06:40:21','2023-08-09 06:40:21','<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"558\" height=\"123\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1.png 558w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1-300x66.png 300w\" sizes=\"(max-width: 558px) 100vw, 558px\" />															\n			<a href=\"#\">\n						Appointment\n					</a>','Header','','inherit','closed','closed','','9-revision-v1','','','2023-08-09 06:40:21','2023-08-09 06:40:21','',9,'https://salandingpage.in8.cdn-alpha.com/?p=11',0,'revision','',0),(12,1,'2023-08-09 06:40:22','2023-08-09 06:40:22','','Untitled-3.png','','inherit','open','closed','','untitled-3-png','','','2023-08-09 06:40:22','2023-08-09 06:40:22','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3.png',0,'attachment','image/png',0),(13,1,'2023-08-09 06:40:25','2023-08-09 06:40:25','','placeholder.png','','inherit','open','closed','','placeholder-png','','','2023-08-09 06:40:25','2023-08-09 06:40:25','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/placeholder.png',0,'attachment','image/png',0),(14,1,'2023-08-09 06:40:25','2023-08-09 06:40:25','<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"382\" height=\"85\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3.png 382w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3-300x67.png 300w\" sizes=\"(max-width: 382px) 100vw, 382px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Page</h4>		\n			<h4>Favorite</h4>		\n			<h4>Fun Fact</h4>		\n												0\n						K													+\n					<h3>Patient</h3>								\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2021 Medicare | Powered by Risegraph		\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','Footer','','publish','closed','closed','','footer','','','2023-08-09 06:40:26','2023-08-09 06:40:26','',0,'https://salandingpage.in8.cdn-alpha.com/?elementor_library=footer',0,'elementor_library','',0),(15,1,'2023-08-09 06:40:26','2023-08-09 06:40:26','','Footer','','inherit','closed','closed','','14-revision-v1','','','2023-08-09 06:40:26','2023-08-09 06:40:26','',14,'https://salandingpage.in8.cdn-alpha.com/?p=15',0,'revision','',0),(16,1,'2023-08-09 06:40:26','2023-08-09 06:40:26','<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"382\" height=\"85\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3.png 382w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3-300x67.png 300w\" sizes=\"(max-width: 382px) 100vw, 382px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Page</h4>		\n			<h4>Favorite</h4>		\n			<h4>Fun Fact</h4>		\n												0\n						K													+\n					<h3>Patient</h3>								\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2021 Medicare | Powered by Risegraph		\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','Footer','','inherit','closed','closed','','14-revision-v1','','','2023-08-09 06:40:26','2023-08-09 06:40:26','',14,'https://salandingpage.in8.cdn-alpha.com/?p=16',0,'revision','',0),(17,1,'2023-08-09 06:40:29','2023-08-09 06:40:29','','main-1.png','','inherit','open','closed','','main-1-png','','','2023-08-09 06:40:29','2023-08-09 06:40:29','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png',0,'attachment','image/png',0),(18,1,'2023-08-09 06:40:33','2023-08-09 06:40:33','','placeholder.png','','inherit','open','closed','','placeholder-png-2','','','2023-08-09 06:40:33','2023-08-09 06:40:33','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/placeholder-1.png',0,'attachment','image/png',0),(19,1,'2023-08-09 06:40:41','2023-08-09 06:40:41','','main-2-2.png','','inherit','open','closed','','main-2-2-png','','','2023-08-09 06:40:41','2023-08-09 06:40:41','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png',0,'attachment','image/png',0),(20,1,'2023-08-09 06:40:43','2023-08-09 06:40:43','','mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg','','inherit','open','closed','','mature-male-patient-in-consultation-with-doctor-in-5nlwpdq-1-jpg','','','2023-08-09 06:40:43','2023-08-09 06:40:43','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg',0,'attachment','image/jpeg',0),(21,1,'2023-08-09 06:40:44','2023-08-09 06:40:44','','Logo-3.png','','inherit','open','closed','','logo-3-png','','','2023-08-09 06:40:44','2023-08-09 06:40:44','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png',0,'attachment','image/png',0),(22,1,'2023-08-09 06:40:45','2023-08-09 06:40:45','','Logo-5.png','','inherit','open','closed','','logo-5-png','','','2023-08-09 06:40:45','2023-08-09 06:40:45','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png',0,'attachment','image/png',0),(23,1,'2023-08-09 06:40:46','2023-08-09 06:40:46','','Logo-1.png','','inherit','open','closed','','logo-1-png','','','2023-08-09 06:40:46','2023-08-09 06:40:46','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png',0,'attachment','image/png',0),(24,1,'2023-08-09 06:40:46','2023-08-09 06:40:46','','Logo-4.png','','inherit','open','closed','','logo-4-png','','','2023-08-09 06:40:46','2023-08-09 06:40:46','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png',0,'attachment','image/png',0),(25,1,'2023-08-09 06:40:51','2023-08-09 06:40:51','','Logo-2.png','','inherit','open','closed','','logo-2-png','','','2023-08-09 06:40:51','2023-08-09 06:40:51','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png',0,'attachment','image/png',0),(26,1,'2023-08-09 06:40:53','2023-08-09 06:40:53','','friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg','','inherit','open','closed','','friendly-female-doctor-and-small-girl-in-bed-in-ho-5a5le87-1-jpg','','','2023-08-09 06:40:53','2023-08-09 06:40:53','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg',0,'attachment','image/jpeg',0),(27,1,'2023-08-09 06:40:54','2023-08-09 06:40:54','','placeholder.png','','inherit','open','closed','','placeholder-png-3','','','2023-08-09 06:40:54','2023-08-09 06:40:54','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/placeholder-2.png',0,'attachment','image/png',0),(28,1,'2023-08-09 06:40:54','2023-08-09 06:40:54','','placeholder.png','','inherit','open','closed','','placeholder-png-4','','','2023-08-09 06:40:54','2023-08-09 06:40:54','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/placeholder-3.png',0,'attachment','image/png',0),(29,1,'2023-08-09 06:40:55','2023-08-09 06:40:55','','placeholder.png','','inherit','open','closed','','placeholder-png-5','','','2023-08-09 06:40:55','2023-08-09 06:40:55','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/placeholder-4.png',0,'attachment','image/png',0),(30,1,'2023-08-09 06:40:56','2023-08-09 06:40:56','','placeholder.png','','inherit','open','closed','','placeholder-png-6','','','2023-08-09 06:40:56','2023-08-09 06:40:56','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/placeholder-5.png',0,'attachment','image/png',0),(31,1,'2023-08-09 06:40:56','2023-08-09 06:40:56','','placeholder.png','','inherit','open','closed','','placeholder-png-7','','','2023-08-09 06:40:56','2023-08-09 06:40:56','',0,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/placeholder-6.png',0,'attachment','image/png',0),(32,1,'2023-08-09 06:40:56','2023-08-09 06:40:56','<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Our Future</p>		\n			<h2>Our Latest Features</h2>		\n		<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. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<h4>Faster Process</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>connectivity</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>branch everywhere</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>best teller</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-2e3a546c\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>','Home','','publish','closed','closed','','home','','','2023-08-09 06:40:58','2023-08-09 06:40:58','',0,'https://salandingpage.in8.cdn-alpha.com/?elementor_library=home',0,'elementor_library','',0),(33,1,'2023-08-09 06:40:57','2023-08-09 06:40:57','','Home','','inherit','closed','closed','','32-revision-v1','','','2023-08-09 06:40:57','2023-08-09 06:40:57','',32,'https://salandingpage.in8.cdn-alpha.com/?p=33',0,'revision','',0),(34,1,'2023-08-09 06:40:58','2023-08-09 06:40:58','<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Our Future</p>		\n			<h2>Our Latest Features</h2>		\n		<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. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<h4>Faster Process</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>connectivity</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>branch everywhere</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>best teller</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-2e3a546c\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>','Home','','inherit','closed','closed','','32-revision-v1','','','2023-08-09 06:40:58','2023-08-09 06:40:58','',32,'https://salandingpage.in8.cdn-alpha.com/?p=34',0,'revision','',0),(35,1,'2023-08-09 12:16:26','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2023-08-09 12:16:26','0000-00-00 00:00:00','',0,'https://salandingpage.in8.cdn-alpha.com/?page_id=35',0,'page','',0),(36,1,'2023-08-09 12:56:52','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2023-08-09 12:56:52','0000-00-00 00:00:00','',0,'https://salandingpage.in8.cdn-alpha.com/?page_id=36',0,'page','',0),(37,1,'2023-08-09 13:02:04','2023-08-09 07:32:04','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Femtosecond LASIK is one of the most preferred LASIK treatments. The procedure can correct several other errors other than refractive errors.</p>		\n			<h4>S M I L E</h4>		\n		<p>it is suitable for patients with dry eyes, contact lens intolerance, and playing contact sports. It has already helped millions achieve freedom from glasses and contacts.</p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.</p>		\n			<h4>Child Eyecare</h4>		\n		<p>Since good vision is an elementary prerequisite for academic performance and social interaction and influences every facet of a child’s life, regular eye examinations are a must.</p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Glaucoma is an eye disease in which eye pressure rises which causes damage to the nerve sited in the back of the eye (optic nerve) and leads to loss of eyesight.</p>		\n			<h4>Cataract Services</h4>		\n		<p>In this the natural lens in the eye becomes cloudy and hard causing unclear vision and disturbance in daily lifestyle. It is also called Motiabind in India and it can happen to even newborn babies.</p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','publish','closed','closed','','home','','','2023-08-10 18:30:41','2023-08-10 13:00:41','',0,'https://salandingpage.in8.cdn-alpha.com/?page_id=37',0,'page','',0),(38,1,'2023-08-09 13:02:04','2023-08-09 07:32:04','','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-09 13:02:04','2023-08-09 07:32:04','',37,'https://salandingpage.in8.cdn-alpha.com/?p=38',0,'revision','',0),(39,1,'2023-08-09 13:04:13','2023-08-09 07:34:13','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\">\n						Appointment\n					</a>','Header','','publish','closed','closed','','header','','','2023-08-10 11:26:32','2023-08-10 05:56:32','',0,'https://salandingpage.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=39',0,'elementor-hf','',0),(40,1,'2023-08-09 13:04:13','2023-08-09 07:34:13','','Header','','inherit','closed','closed','','39-revision-v1','','','2023-08-09 13:04:13','2023-08-09 07:34:13','',39,'https://salandingpage.in8.cdn-alpha.com/?p=40',0,'revision','',0),(42,1,'2023-08-09 13:06:45','2023-08-09 07:36:45','','Header','','inherit','closed','closed','','39-revision-v1','','','2023-08-09 13:06:45','2023-08-09 07:36:45','',39,'https://salandingpage.in8.cdn-alpha.com/?p=42',0,'revision','',0),(43,1,'2023-08-09 13:06:46','2023-08-09 07:36:46','','Header','','inherit','closed','closed','','39-revision-v1','','','2023-08-09 13:06:46','2023-08-09 07:36:46','',39,'https://salandingpage.in8.cdn-alpha.com/?p=43',0,'revision','',0),(44,1,'2023-08-09 13:06:47','2023-08-09 07:36:47','<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"558\" height=\"123\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1.png 558w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1-300x66.png 300w\" sizes=\"(max-width: 558px) 100vw, 558px\" />															\n			<a href=\"#\">\n						Appointment\n					</a>','Header','','inherit','closed','closed','','39-revision-v1','','','2023-08-09 13:06:47','2023-08-09 07:36:47','',39,'https://salandingpage.in8.cdn-alpha.com/?p=44',0,'revision','',0),(45,1,'2023-08-09 13:07:18','2023-08-09 07:37:18','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2023 The Sight Avenue | Managed by Ideas Cloud','Footer','','publish','closed','closed','','footer','','','2023-08-10 11:28:14','2023-08-10 05:58:14','',0,'https://salandingpage.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=45',0,'elementor-hf','',0),(46,1,'2023-08-09 13:07:18','2023-08-09 07:37:18','','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-09 13:07:18','2023-08-09 07:37:18','',45,'https://salandingpage.in8.cdn-alpha.com/?p=46',0,'revision','',0),(48,1,'2023-08-09 16:39:18','2023-08-09 11:09:18','','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-09 16:39:18','2023-08-09 11:09:18','',45,'https://salandingpage.in8.cdn-alpha.com/?p=48',0,'revision','',0),(49,1,'2023-08-09 16:39:18','2023-08-09 11:09:18','','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-09 16:39:18','2023-08-09 11:09:18','',45,'https://salandingpage.in8.cdn-alpha.com/?p=49',0,'revision','',0),(50,1,'2023-08-09 16:39:19','2023-08-09 11:09:19','<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"382\" height=\"85\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3.png 382w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3-300x67.png 300w\" sizes=\"(max-width: 382px) 100vw, 382px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Page</h4>		\n			<h4>Favorite</h4>		\n			<h4>Fun Fact</h4>		\n												0\n						K													+\n					<h3>Patient</h3>								\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2021 Medicare | Powered by Risegraph		\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-09 16:39:19','2023-08-09 11:09:19','',45,'https://salandingpage.in8.cdn-alpha.com/?p=50',0,'revision','',0),(51,1,'2023-08-09 16:49:28','2023-08-09 11:19:28','','Default Kit','','inherit','closed','closed','','5-revision-v1','','','2023-08-09 16:49:28','2023-08-09 11:19:28','',5,'https://salandingpage.in8.cdn-alpha.com/?p=51',0,'revision','',0),(52,1,'2023-08-09 16:49:29','2023-08-09 11:19:29','','Default Kit','','inherit','closed','closed','','5-revision-v1','','','2023-08-09 16:49:29','2023-08-09 11:19:29','',5,'https://salandingpage.in8.cdn-alpha.com/?p=52',0,'revision','',0),(53,1,'2023-08-10 10:54:12','2023-08-10 05:24:12','','The Sight Avenue','','inherit','open','closed','','the-sight-avenue','','','2023-08-10 10:54:22','2023-08-10 05:24:22','',39,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp',0,'attachment','image/webp',0),(55,1,'2023-08-10 10:58:55','2023-08-10 05:28:55','<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"558\" height=\"123\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1.png 558w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1-300x66.png 300w\" sizes=\"(max-width: 558px) 100vw, 558px\" />															\n			<a href=\"#\">\n						Appointment\n					</a>','Header','','inherit','closed','closed','','39-revision-v1','','','2023-08-10 10:58:55','2023-08-10 05:28:55','',39,'https://salandingpage.in8.cdn-alpha.com/?p=55',0,'revision','',0),(56,1,'2023-08-10 10:58:55','2023-08-10 05:28:55','<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"558\" height=\"123\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1.png 558w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/cropped-cropped-Untitled-1-1-300x66.png 300w\" sizes=\"(max-width: 558px) 100vw, 558px\" />															\n			<a href=\"#\">\n						Appointment\n					</a>','Header','','inherit','closed','closed','','39-revision-v1','','','2023-08-10 10:58:55','2023-08-10 05:28:55','',39,'https://salandingpage.in8.cdn-alpha.com/?p=56',0,'revision','',0),(57,1,'2023-08-10 10:58:56','2023-08-10 05:28:56','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\">\n						Appointment\n					</a>','Header','','inherit','closed','closed','','39-revision-v1','','','2023-08-10 10:58:56','2023-08-10 05:28:56','',39,'https://salandingpage.in8.cdn-alpha.com/?p=57',0,'revision','',0),(58,1,'2023-08-10 10:59:29','2023-08-10 05:29:29','<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"382\" height=\"85\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3.png 382w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3-300x67.png 300w\" sizes=\"(max-width: 382px) 100vw, 382px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Page</h4>		\n			<h4>Favorite</h4>		\n			<h4>Fun Fact</h4>		\n												0\n						K													+\n					<h3>Patient</h3>								\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2021 Medicare | Powered by Risegraph		\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 10:59:29','2023-08-10 05:29:29','',45,'https://salandingpage.in8.cdn-alpha.com/?p=58',0,'revision','',0),(59,1,'2023-08-10 10:59:29','2023-08-10 05:29:29','<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"382\" height=\"85\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3.png 382w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Untitled-3-300x67.png 300w\" sizes=\"(max-width: 382px) 100vw, 382px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Page</h4>		\n			<h4>Favorite</h4>		\n			<h4>Fun Fact</h4>		\n												0\n						K													+\n					<h3>Patient</h3>								\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2021 Medicare | Powered by Risegraph		\n			<style>/*! elementor - v3.15.0 - 02-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 10:59:29','2023-08-10 05:29:29','',45,'https://salandingpage.in8.cdn-alpha.com/?p=59',0,'revision','',0),(60,1,'2023-08-10 10:59:30','2023-08-10 05:29:30','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Page</h4>		\n			<h4>Favorite</h4>		\n			<h4>Fun Fact</h4>		\n												0\n						K													+\n					<h3>Patient</h3>								\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2021 Medicare | Powered by Risegraph		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 10:59:30','2023-08-10 05:29:30','',45,'https://salandingpage.in8.cdn-alpha.com/?p=60',0,'revision','',0),(61,1,'2023-08-10 11:03:39','2023-08-10 05:33:39','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Page</h4>		\n			<h4>Favorite</h4>		\n			<h4>Fun Fact</h4>		\n												0\n						K													+\n					<h3>Patient</h3>								\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2021 Medicare | Powered by Risegraph		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 11:03:39','2023-08-10 05:33:39','',45,'https://salandingpage.in8.cdn-alpha.com/?p=61',0,'revision','',0),(62,1,'2023-08-10 11:03:40','2023-08-10 05:33:40','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Page</h4>		\n			<h4>Favorite</h4>		\n			<h4>Fun Fact</h4>		\n												0\n						K													+\n					<h3>Patient</h3>								\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2021 Medicare | Powered by Risegraph		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 11:03:40','2023-08-10 05:33:40','',45,'https://salandingpage.in8.cdn-alpha.com/?p=62',0,'revision','',0),(63,1,'2023-08-10 11:03:40','2023-08-10 05:33:40','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2023 The Sight Avenue | Managed by Ideas Cloud		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 11:03:40','2023-08-10 05:33:40','',45,'https://salandingpage.in8.cdn-alpha.com/?p=63',0,'revision','',0),(64,1,'2023-08-10 11:03:49','2023-08-10 05:33:49','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2023 The Sight Avenue | Managed by Ideas Cloud		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 11:03:49','2023-08-10 05:33:49','',45,'https://salandingpage.in8.cdn-alpha.com/?p=64',0,'revision','',0),(65,1,'2023-08-10 11:03:50','2023-08-10 05:33:50','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2023 The Sight Avenue | Managed by Ideas Cloud		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 11:03:50','2023-08-10 05:33:50','',45,'https://salandingpage.in8.cdn-alpha.com/?p=65',0,'revision','',0),(66,1,'2023-08-10 11:03:51','2023-08-10 05:33:51','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2023 The Sight Avenue | Managed by Ideas Cloud','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 11:03:51','2023-08-10 05:33:51','',45,'https://salandingpage.in8.cdn-alpha.com/?p=66',0,'revision','',0),(67,1,'2023-08-10 11:04:18','2023-08-10 05:34:18','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2023 The Sight Avenue | Managed by Ideas Cloud','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 11:04:18','2023-08-10 05:34:18','',45,'https://salandingpage.in8.cdn-alpha.com/?p=67',0,'revision','',0),(68,1,'2023-08-10 11:04:18','2023-08-10 05:34:18','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2023 The Sight Avenue | Managed by Ideas Cloud','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 11:04:18','2023-08-10 05:34:18','',45,'https://salandingpage.in8.cdn-alpha.com/?p=68',0,'revision','',0),(69,1,'2023-08-10 11:04:19','2023-08-10 05:34:19','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2023 The Sight Avenue | Managed by Ideas Cloud','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 11:04:19','2023-08-10 05:34:19','',45,'https://salandingpage.in8.cdn-alpha.com/?p=69',0,'revision','',0),(71,1,'2023-08-10 11:26:31','2023-08-10 05:56:31','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\">\n						Appointment\n					</a>','Header','','inherit','closed','closed','','39-revision-v1','','','2023-08-10 11:26:31','2023-08-10 05:56:31','',39,'https://salandingpage.in8.cdn-alpha.com/?p=71',0,'revision','',0),(72,1,'2023-08-10 11:26:32','2023-08-10 05:56:32','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\">\n						Appointment\n					</a>','Header','','inherit','closed','closed','','39-revision-v1','','','2023-08-10 11:26:32','2023-08-10 05:56:32','',39,'https://salandingpage.in8.cdn-alpha.com/?p=72',0,'revision','',0),(73,1,'2023-08-10 11:26:32','2023-08-10 05:56:32','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\">\n						Appointment\n					</a>','Header','','inherit','closed','closed','','39-revision-v1','','','2023-08-10 11:26:32','2023-08-10 05:56:32','',39,'https://salandingpage.in8.cdn-alpha.com/?p=73',0,'revision','',0),(74,1,'2023-08-10 11:28:12','2023-08-10 05:58:12','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2023 The Sight Avenue | Managed by Ideas Cloud','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 11:28:12','2023-08-10 05:58:12','',45,'https://salandingpage.in8.cdn-alpha.com/?p=74',0,'revision','',0),(75,1,'2023-08-10 11:28:13','2023-08-10 05:58:13','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2023 The Sight Avenue | Managed by Ideas Cloud','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 11:28:13','2023-08-10 05:58:13','',45,'https://salandingpage.in8.cdn-alpha.com/?p=75',0,'revision','',0),(76,1,'2023-08-10 11:28:14','2023-08-10 05:58:14','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"162\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp\" alt=\"The Sight Avenue\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue.webp 800w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-300x61.webp 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/The-Sight-Avenue-768x156.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Copyright © 2023 The Sight Avenue | Managed by Ideas Cloud','Footer','','inherit','closed','closed','','45-revision-v1','','','2023-08-10 11:28:14','2023-08-10 05:58:14','',45,'https://salandingpage.in8.cdn-alpha.com/?p=76',0,'revision','',0),(77,1,'2023-08-10 11:28:30','2023-08-10 05:58:30','','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 11:28:30','2023-08-10 05:58:30','',37,'https://salandingpage.in8.cdn-alpha.com/?p=77',0,'revision','',0),(78,1,'2023-08-10 11:28:30','2023-08-10 05:58:30','','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 11:28:30','2023-08-10 05:58:30','',37,'https://salandingpage.in8.cdn-alpha.com/?p=78',0,'revision','',0),(79,1,'2023-08-10 11:28:31','2023-08-10 05:58:31','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Our Future</p>		\n			<h2>Our Latest Features</h2>		\n		<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. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<h4>Faster Process</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>connectivity</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>branch everywhere</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>best teller</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 11:28:31','2023-08-10 05:58:31','',37,'https://salandingpage.in8.cdn-alpha.com/?p=79',0,'revision','',0),(81,1,'2023-08-10 11:49:15','2023-08-10 06:19:15','','Screenshot 2023-08-10 11.47.56 AM','','inherit','open','closed','','screenshot-2023-08-10-11-47-56-am','','','2023-08-10 11:49:15','2023-08-10 06:19:15','',37,'https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Screenshot-2023-08-10-11.47.56-AM.webp',0,'attachment','image/webp',0),(82,1,'2023-08-10 11:52:43','2023-08-10 06:22:43','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Our Future</p>		\n			<h2>Our Latest Features</h2>		\n		<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. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<h4>Faster Process</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>connectivity</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>branch everywhere</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>best teller</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 11:52:43','2023-08-10 06:22:43','',37,'https://salandingpage.in8.cdn-alpha.com/?p=82',0,'revision','',0),(83,1,'2023-08-10 11:52:44','2023-08-10 06:22:44','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Our Future</p>		\n			<h2>Our Latest Features</h2>		\n		<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. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<h4>Faster Process</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>connectivity</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>branch everywhere</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>best teller</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 11:52:44','2023-08-10 06:22:44','',37,'https://salandingpage.in8.cdn-alpha.com/?p=83',0,'revision','',0),(84,1,'2023-08-10 11:52:45','2023-08-10 06:22:45','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Our Future</p>		\n			<h2>Our Latest Features</h2>		\n		<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. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<h4>Faster Process</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>connectivity</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>branch everywhere</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>best teller</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 11:52:45','2023-08-10 06:22:45','',37,'https://salandingpage.in8.cdn-alpha.com/?p=84',0,'revision','',0),(86,1,'2023-08-10 12:39:40','2023-08-10 07:09:40','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Our Future</p>		\n			<h2>Our Latest Features</h2>		\n		<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. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<h4>Faster Process</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>connectivity</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>branch everywhere</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>best teller</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 12:39:40','2023-08-10 07:09:40','',37,'https://salandingpage.in8.cdn-alpha.com/?p=86',0,'revision','',0),(87,1,'2023-08-10 12:39:40','2023-08-10 07:09:40','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Our Future</p>		\n			<h2>Our Latest Features</h2>		\n		<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. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<h4>Faster Process</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>connectivity</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>branch everywhere</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>best teller</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 12:39:40','2023-08-10 07:09:40','',37,'https://salandingpage.in8.cdn-alpha.com/?p=87',0,'revision','',0),(88,1,'2023-08-10 12:39:41','2023-08-10 07:09:41','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 12:39:41','2023-08-10 07:09:41','',37,'https://salandingpage.in8.cdn-alpha.com/?p=88',0,'revision','',0),(90,1,'2023-08-10 13:03:49','2023-08-10 07:33:49','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 13:03:49','2023-08-10 07:33:49','',37,'https://salandingpage.in8.cdn-alpha.com/?p=90',0,'revision','',0),(91,1,'2023-08-10 13:03:50','2023-08-10 07:33:50','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 13:03:50','2023-08-10 07:33:50','',37,'https://salandingpage.in8.cdn-alpha.com/?p=91',0,'revision','',0),(92,1,'2023-08-10 13:03:51','2023-08-10 07:33:51','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 13:03:51','2023-08-10 07:33:51','',37,'https://salandingpage.in8.cdn-alpha.com/?p=92',0,'revision','',0),(93,1,'2023-08-10 13:38:22','2023-08-10 08:08:22','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 13:38:22','2023-08-10 08:08:22','',37,'https://salandingpage.in8.cdn-alpha.com/?p=93',0,'revision','',0),(94,1,'2023-08-10 13:38:23','2023-08-10 08:08:23','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 13:38:23','2023-08-10 08:08:23','',37,'https://salandingpage.in8.cdn-alpha.com/?p=94',0,'revision','',0),(95,1,'2023-08-10 13:38:24','2023-08-10 08:08:24','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 13:38:24','2023-08-10 08:08:24','',37,'https://salandingpage.in8.cdn-alpha.com/?p=95',0,'revision','',0),(96,1,'2023-08-10 13:43:03','2023-08-10 08:13:03','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 13:43:03','2023-08-10 08:13:03','',37,'https://salandingpage.in8.cdn-alpha.com/?p=96',0,'revision','',0),(97,1,'2023-08-10 13:43:04','2023-08-10 08:13:04','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 13:43:04','2023-08-10 08:13:04','',37,'https://salandingpage.in8.cdn-alpha.com/?p=97',0,'revision','',0),(98,1,'2023-08-10 13:43:05','2023-08-10 08:13:05','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n            <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 13:43:05','2023-08-10 08:13:05','',37,'https://salandingpage.in8.cdn-alpha.com/?p=98',0,'revision','',0),(99,1,'2023-08-10 13:46:26','2023-08-10 08:16:26','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n            <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 13:46:26','2023-08-10 08:16:26','',37,'https://salandingpage.in8.cdn-alpha.com/?p=99',0,'revision','',0),(100,1,'2023-08-10 13:46:27','2023-08-10 08:16:27','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n            <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 13:46:27','2023-08-10 08:16:27','',37,'https://salandingpage.in8.cdn-alpha.com/?p=100',0,'revision','',0),(101,1,'2023-08-10 13:46:28','2023-08-10 08:16:28','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 13:46:28','2023-08-10 08:16:28','',37,'https://salandingpage.in8.cdn-alpha.com/?p=101',0,'revision','',0),(103,1,'2023-08-10 16:14:06','2023-08-10 10:44:06','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 16:14:06','2023-08-10 10:44:06','',37,'https://salandingpage.in8.cdn-alpha.com/?p=103',0,'revision','',0),(104,1,'2023-08-10 16:14:07','2023-08-10 10:44:07','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 16:14:07','2023-08-10 10:44:07','',37,'https://salandingpage.in8.cdn-alpha.com/?p=104',0,'revision','',0),(105,1,'2023-08-10 16:14:08','2023-08-10 10:44:08','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Femtosecond LASIK is one of the most preferred <a href=\"https://thesightavenue.com/blog/lasik-surgery-treatment-and-recovery-tips\"><b>LASIK treatments</b></a>. The procedure can correct several other errors other than refractive errors.</p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.</p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 16:14:08','2023-08-10 10:44:08','',37,'https://salandingpage.in8.cdn-alpha.com/?p=105',0,'revision','',0),(107,1,'2023-08-10 17:31:27','2023-08-10 12:01:27','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Femtosecond LASIK is one of the most preferred <a href=\"https://thesightavenue.com/blog/lasik-surgery-treatment-and-recovery-tips\"><b>LASIK treatments</b></a>. The procedure can correct several other errors other than refractive errors.</p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.</p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 17:31:27','2023-08-10 12:01:27','',37,'https://salandingpage.in8.cdn-alpha.com/?p=107',0,'revision','',0),(108,1,'2023-08-10 17:31:28','2023-08-10 12:01:28','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Femtosecond LASIK is one of the most preferred <a href=\"https://thesightavenue.com/blog/lasik-surgery-treatment-and-recovery-tips\"><b>LASIK treatments</b></a>. The procedure can correct several other errors other than refractive errors.</p>		\n			<h4>S M I L E</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.</p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 17:31:28','2023-08-10 12:01:28','',37,'https://salandingpage.in8.cdn-alpha.com/?p=108',0,'revision','',0),(109,1,'2023-08-10 17:31:29','2023-08-10 12:01:29','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Femtosecond LASIK is one of the most preferred LASIK treatments. The procedure can correct several other errors other than refractive errors.</p>		\n			<h4>S M I L E</h4>		\n		<p>it is suitable for patients with dry eyes, contact lens intolerance, and playing contact sports. It has already helped millions achieve freedom from glasses and contacts.</p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.</p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 17:31:29','2023-08-10 12:01:29','',37,'https://salandingpage.in8.cdn-alpha.com/?p=109',0,'revision','',0),(111,1,'2023-08-10 18:30:40','2023-08-10 13:00:40','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Femtosecond LASIK is one of the most preferred LASIK treatments. The procedure can correct several other errors other than refractive errors.</p>		\n			<h4>S M I L E</h4>		\n		<p>it is suitable for patients with dry eyes, contact lens intolerance, and playing contact sports. It has already helped millions achieve freedom from glasses and contacts.</p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.</p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 18:30:40','2023-08-10 13:00:40','',37,'https://salandingpage.in8.cdn-alpha.com/?p=111',0,'revision','',0),(112,1,'2023-08-10 18:30:40','2023-08-10 13:00:40','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Femtosecond LASIK is one of the most preferred LASIK treatments. The procedure can correct several other errors other than refractive errors.</p>		\n			<h4>S M I L E</h4>		\n		<p>it is suitable for patients with dry eyes, contact lens intolerance, and playing contact sports. It has already helped millions achieve freedom from glasses and contacts.</p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.</p>		\n			<h4>Myopia Control Lenses</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<h4>Cataract Services</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 18:30:40','2023-08-10 13:00:40','',37,'https://salandingpage.in8.cdn-alpha.com/?p=112',0,'revision','',0),(113,1,'2023-08-10 18:30:41','2023-08-10 13:00:41','<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Your Hospital</p>		\n			<h1>We are a reliable partner</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Find a Doctor\n					</a>\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"590\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-1-254x300.png 254w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>The Live Session</p>		\n			<h2>Eye Flu Prevention</h2>		\n		<p>An enlightening webinar on Eye Flu Prevention! Discover crucial insights from leading experts in Ophthalmology. Learn how to safeguard your vision and prevent eye flu\'s impact.</p>		\n			<a href=\"https://www.youtube.com/@thesightavenue/\">\n						View More\n					</a>\n		https://www.youtube.com/watch?v=co1x4aYIEF8		\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1-qanaxj6ppcr0nrmvk3ct8ufebxo786i2uetcmjsoq2.jpg\" title=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" alt=\"friendly-female-doctor-and-small-girl-in-bed-in-ho-5A5LE87-1.jpg\" loading=\"lazy\" />															\n			<p>About Us</p>		\n			<h2>Welcome to Medicare</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p><p>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</p>		\n			<a href=\"#\">\n						View More\n					</a>\n			<p>About Us</p>		\n                                <noscript>\n	Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We have experienced doctors</h2>		\n			<a href=\"#\">\n						View More\n					</a>\n															<img width=\"500\" height=\"500\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2.png 500w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-300x300.png 300w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/main-2-2-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<p>Solutions</p>		\n			<h2>That we provide</h2>		\n			<h4>Lasik</h4>		\n		<p>Femtosecond LASIK is one of the most preferred LASIK treatments. The procedure can correct several other errors other than refractive errors.</p>		\n			<h4>S M I L E</h4>		\n		<p>it is suitable for patients with dry eyes, contact lens intolerance, and playing contact sports. It has already helped millions achieve freedom from glasses and contacts.</p>		\n			<h4>Implantable Collamer Lens (ICL)</h4>		\n		<p>ICL is a type of implantable contact lens that is made from a biocompatible material called Collamer. It is used to correct refractive errors and provide clear vision.</p>		\n			<h4>Child Eyecare</h4>		\n		<p>Since good vision is an elementary prerequisite for academic performance and social interaction and influences every facet of a child’s life, regular eye examinations are a must.</p>		\n			<h4>Glaucoma Services</h4>		\n		<p>Glaucoma is an eye disease in which eye pressure rises which causes damage to the nerve sited in the back of the eye (optic nerve) and leads to loss of eyesight.</p>		\n			<h4>Cataract Services</h4>		\n		<p>In this the natural lens in the eye becomes cloudy and hard causing unclear vision and disturbance in daily lifestyle. It is also called Motiabind in India and it can happen to even newborn babies.</p>		\n			<style>/*! elementor - v3.15.0 - 09-08-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				+\n							Projects Done\n				0\n							Happy Clients\n				0\n				+\n							Plants Types\n				0\n				+\n							Projects Done\n			<p>About Us</p>		\n			<h2>Why us?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<ul id=\"eael-feature-list-28467ef7\">\n			                <li>\n							<p							>Lorem ipsum dolor sit amet</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>consectetur adipiscing elit</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>It is a long established fact that a reader</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>If you are going to use a passage of Lorem Ipsum</p						>\n						<p></p>\n					</li>\n				                <li>\n							<p							>combined with a handful of model</p						>\n						<p></p>\n					</li>\n							</ul>\n															<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1-qanax9sbt0e2d6evxkho9ufac06webo333gtiu7dlg.jpg\" title=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" alt=\"mature-male-patient-in-consultation-with-doctor-in-5NLWPDQ-1.jpg\" loading=\"lazy\" />															\n			<h2>File a complaint with us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n			<a href=\"#\">\n						Appointment\n					</a>\n			<p>Testimonial</p>		\n			<h2>What our patients say</h2>		\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #1</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #2</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #3</strong>\n									Designation\n																				<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />									\n																	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt </p>\n									<strong>Testimonial #4</strong>\n									Designation\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-1-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-4-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-5-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-3-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n											<img width=\"200\" height=\"200\" src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2.png 200w, https://salandingpage.in8.cdn-alpha.com/wp-content/uploads/2023/08/Logo-2-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<p>Emergency Service</p>		\n			<h2>511 - 589 - 6656</h2>		\n			<style id=\"eael-fg-inline-css-9dca7ab\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-9dca7ab .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-9dca7ab  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\" \n                        data-filter=\".eael-cf-gallery-item\">Gallery Item</li></ul>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n				<img src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://salandingpage.in8.cdn-alpha.com/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>','Home','','inherit','closed','closed','','37-revision-v1','','','2023-08-10 18:30:41','2023-08-10 13:00:41','',37,'https://salandingpage.in8.cdn-alpha.com/?p=113',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(9,2,0),(14,2,0),(32,2,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=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

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

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

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

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

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 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,'section','section',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','sitemanager'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:2:{s:64:\"76c1140c9fc90c99d9597d93ca4358d4f206276508442f0541cc5187f5c1b1b1\";a:4:{s:10:\"expiration\";i:1691731999;s:2:\"ip\";s:13:\"172.70.218.64\";s:2:\"ua\";s:110:\"Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36\";s:5:\"login\";i:1691559199;}s:64:\"5a89cbfd797c0fbfdbc1ccc69ba59f9e9bf91457b3c1370471ccb8e54c65919e\";a:4:{s:10:\"expiration\";i:1691816886;s:2:\"ip\";s:14:\"172.69.179.184\";s:2:\"ua\";s:110:\"Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36\";s:5:\"login\";i:1691644086;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"172.69.179.0\";}'),(19,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2023-08-09T06:46:44.537Z\";}'),(20,1,'elementor_introduction','a:3:{s:27:\"ai-get-started-announcement\";b:1;s:7:\"exit_to\";b:1;s:20:\"globals_introduction\";b:1;}'),(21,1,'announcements_user_counter','1'),(22,1,'hfe-popup','dismissed'),(23,1,'header-footer-elementor-rating','delayed-notice'),(24,1,'elementor_preferences','a:0:{}'),(25,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(26,1,'wp_user-settings-time','1691647487'),(30,1,'wp_nf_form_preview_2','a:4:{s:2:\"id\";i:2;s:8:\"settings\";a:24:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:18:\"Event Registration\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:10:\"form_title\";s:18:\"Event Registration\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:3:\"key\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"0\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:5:{i:0;s:19:\"phone_1691654745870\";i:1;s:18:\"name_1691654083383\";i:2;s:5:\"email\";i:3;s:18:\"date_1691654256012\";i:4;s:8:\"register\";}s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:24:\"form_title_heading_level\";s:1:\"3\";}s:6:\"fields\";a:5:{i:7;a:1:{s:8:\"settings\";a:24:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:1;s:5:\"order\";i:2;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:18:\"name_1691654083383\";s:4:\"type\";s:9:\"firstname\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:14:\"one-half first\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:11:\"field_label\";s:10:\"First Name\";s:9:\"field_key\";s:9:\"firstname\";s:21:\"custom_name_attribute\";s:5:\"fname\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}}i:10;a:1:{s:8:\"settings\";a:32:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:1;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:19:\"phone_1691654745870\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:15:\"container_class\";s:8:\"one-half\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:11:\"field_label\";s:5:\"Phone\";s:9:\"field_key\";s:7:\"textbox\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}}i:9;a:1:{s:8:\"settings\";a:23:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:3;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";i:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:14:\"one-half first\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:5:\"email\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}}i:18;a:1:{s:8:\"settings\";a:23:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:4;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"date\";s:5:\"label\";s:9:\"Date/Time\";s:3:\"key\";s:18:\"date_1691654256012\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";i:1;s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"date_mode\";s:13:\"date_and_time\";s:11:\"date_format\";s:17:\"dddd, MMMM D YYYY\";s:16:\"year_range_start\";s:0:\"\";s:14:\"year_range_end\";s:0:\"\";s:8:\"hours_24\";i:0;s:16:\"minute_increment\";i:5;s:14:\"drawerDisabled\";b:0;}}i:17;a:1:{s:8:\"settings\";a:15:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:5;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:8:\"Register\";s:3:\"key\";s:8:\"register\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:8:\"Register\";s:9:\"field_key\";s:8:\"register\";s:14:\"drawerDisabled\";b:0;}}}s:7:\"actions\";a:4:{i:5;a:1:{s:8:\"settings\";a:33:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:17:\"Record Submission\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"order\";s:1:\"3\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:7:\"message\";s:160:\"This action adds users to WordPress\' personal data export tool, allowing admins to comply with the GDPR and other privacy regulations from the site\'s front end.\";s:19:\"email_message_plain\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";}}i:6;a:1:{s:8:\"settings\";a:27:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:23:\"User Email Confirmation\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:22:\"Ninja Forms Submission\";s:7:\"message\";s:18:\"{all_fields_table}\";s:5:\"order\";s:1:\"2\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:39:\"Thank you for registering for our event\";s:13:\"email_message\";s:72:\"<p>Your registration details are below:</p><p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:20:\"{system:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:19:\"email_message_plain\";s:0:\"\";}}i:7;a:1:{s:8:\"settings\";a:27:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:24:\"Admin Email Notification\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:2:\"to\";s:20:\"{system:admin_email}\";s:7:\"subject\";s:22:\"Ninja Forms Submission\";s:7:\"message\";s:18:\"{all_fields_table}\";s:5:\"order\";s:1:\"2\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:55:\"New Event Registration from {field:name_1691654083383} \";s:13:\"email_message\";s:67:\"<p>Registration details are below:</p><p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:13:\"{field:email}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:19:\"email_message_plain\";s:0:\"\";}}i:8;a:1:{s:8:\"settings\";a:33:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:15:\"Success Message\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:7:\"message\";s:42:\"Your form has been successfully submitted.\";s:5:\"order\";s:1:\"1\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:47:\"<p>Thank you for registering for our event.</p>\";s:9:\"parent_id\";s:1:\"2\";s:19:\"email_message_plain\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";}}}}'),(31,1,'wp_nf_form_preview_2','a:4:{s:2:\"id\";i:2;s:8:\"settings\";a:24:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:18:\"Event Registration\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:10:\"form_title\";s:18:\"Event Registration\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:3:\"key\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"0\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:5:{i:0;s:19:\"phone_1691654745870\";i:1;s:18:\"name_1691654083383\";i:2;s:5:\"email\";i:3;s:18:\"date_1691654256012\";i:4;s:8:\"register\";}s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:24:\"form_title_heading_level\";s:1:\"3\";}s:6:\"fields\";a:5:{i:7;a:1:{s:8:\"settings\";a:24:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:1;s:5:\"order\";i:2;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:18:\"name_1691654083383\";s:4:\"type\";s:9:\"firstname\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:14:\"one-half first\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:11:\"field_label\";s:10:\"First Name\";s:9:\"field_key\";s:9:\"firstname\";s:21:\"custom_name_attribute\";s:5:\"fname\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}}i:10;a:1:{s:8:\"settings\";a:32:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:1;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:19:\"phone_1691654745870\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:15:\"container_class\";s:8:\"one-half\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:11:\"field_label\";s:5:\"Phone\";s:9:\"field_key\";s:7:\"textbox\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}}i:9;a:1:{s:8:\"settings\";a:23:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:3;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";i:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:14:\"one-half first\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:5:\"email\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}}i:18;a:1:{s:8:\"settings\";a:23:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:4;s:11:\"idAttribute\";s:2:\"id\";s:4:\"type\";s:4:\"date\";s:5:\"label\";s:9:\"Date/Time\";s:3:\"key\";s:18:\"date_1691654256012\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";i:1;s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"date_mode\";s:13:\"date_and_time\";s:11:\"date_format\";s:17:\"dddd, MMMM D YYYY\";s:16:\"year_range_start\";s:0:\"\";s:14:\"year_range_end\";s:0:\"\";s:8:\"hours_24\";i:0;s:16:\"minute_increment\";i:5;s:14:\"drawerDisabled\";b:0;}}i:17;a:1:{s:8:\"settings\";a:15:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:5;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:8:\"Register\";s:3:\"key\";s:8:\"register\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:8:\"Register\";s:9:\"field_key\";s:8:\"register\";s:14:\"drawerDisabled\";b:0;}}}s:7:\"actions\";a:4:{i:5;a:1:{s:8:\"settings\";a:33:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:17:\"Record Submission\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"order\";s:1:\"3\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:7:\"message\";s:160:\"This action adds users to WordPress\' personal data export tool, allowing admins to comply with the GDPR and other privacy regulations from the site\'s front end.\";s:19:\"email_message_plain\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";}}i:6;a:1:{s:8:\"settings\";a:27:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:23:\"User Email Confirmation\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:22:\"Ninja Forms Submission\";s:7:\"message\";s:18:\"{all_fields_table}\";s:5:\"order\";s:1:\"2\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:39:\"Thank you for registering for our event\";s:13:\"email_message\";s:72:\"<p>Your registration details are below:</p><p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:20:\"{system:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:19:\"email_message_plain\";s:0:\"\";}}i:7;a:1:{s:8:\"settings\";a:27:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:24:\"Admin Email Notification\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:2:\"to\";s:20:\"{system:admin_email}\";s:7:\"subject\";s:22:\"Ninja Forms Submission\";s:7:\"message\";s:18:\"{all_fields_table}\";s:5:\"order\";s:1:\"2\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:55:\"New Event Registration from {field:name_1691654083383} \";s:13:\"email_message\";s:67:\"<p>Registration details are below:</p><p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:13:\"{field:email}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:19:\"email_message_plain\";s:0:\"\";}}i:8;a:1:{s:8:\"settings\";a:33:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:15:\"Success Message\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:7:\"message\";s:42:\"Your form has been successfully submitted.\";s:5:\"order\";s:1:\"1\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:47:\"<p>Thank you for registering for our event.</p>\";s:9:\"parent_id\";s:1:\"2\";s:19:\"email_message_plain\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";}}}}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'sitemanager','$P$BRUKfhVMTOW3iz36GHLZLQLfNee3ZP0','sitemanager','wp@dxpsites.com','https://salandingpage.in8.cdn-alpha.com','2023-08-09 05:28:51','',0,'sitemanager');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2024-06-28 20:54:03

India Mostbet – Affy Pharma Pvt Ltd https://affypharma.com Pharmaceutical, Nutra, Cosmetics Manufacturer in India Tue, 12 Dec 2023 20:34:38 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://affypharma.com/wp-content/uploads/2020/01/153026176286385652-Copy-150x150.png India Mostbet – Affy Pharma Pvt Ltd https://affypharma.com 32 32 Download Mostbet App, play, and win big https://affypharma.com/download-mostbet-app-play-and-win-big/ https://affypharma.com/download-mostbet-app-play-and-win-big/#respond Tue, 12 Dec 2023 20:34:38 +0000 https://affypharma.com/?p=2349 Download Mostbet App, play, and win big!

Mostbet App Download for Android APK in India 2023

The availability of methods and Mostbet withdrawal rules depends on the user’s country. The Mostbet minimum deposit amount also can vary depending on the method. Usually, it is 300 INR but for some e-wallets it can be lower. We provide a comprehensive FAQ section with answers on the common questions.

  • Go into your device’s Settings menu and look for an option for updating your OS.
  • The program will unpack and install the application on your computer.
  • Playing at Mostbet betting exchange India is similar to playing at a traditional sportsbook.
  • Without this, in some cases, the installation may be blocked.
  • When you select this or that activity, a list with diverse sports, tournaments and odds or casino games will appear.

The hallmark of the Mostbet bookmaker app is the huge freedom of choice that the player can get. All the most popular sports are present, there is even a special section for e-sports and virtual sports betting. However, these are the sports where you will have the most Mostbet bonuses and live betting markets available. At the moment, many users prefer companies with applications for mobile devices.

Download Now

Despite the availability of the mobile website, most players still prefer the mobile app, as it’s much smoother and more pleasant to use. What’s also worth mentioning is the types of bets you can place. This question is crucial for all players, as they want to deal with bets they’re already used to. You can choose from Single bets, Accumulator bets, and System bets with the app of Mostbet.

  • The latest application version for iOS is available in Urdu and English.
  • However, bettors will be able to orient themselves by the infographic, which presents the current state of the game in the course of its implementation.
  • It is secure because of protected personal and financial information.
  • Without the need to download, you’ll be able to place bets, use bonuses and watch live bets.

The platform of Mostbet generously congratulates its users on their birthdays and provides them with various bonuses. The Mostbet App is a fantastic way to access the best betting website from your mobile device. The app is free to download for both Apple and Android users and is accessible on both iOS and Android platforms. Yes, Mostbet offers live streaming of events within the app for users to enjoy mostbetz2.in.

Mostbet v5.8.4 MOD APK (Unlocked) Download

You can insure any type of wager by clicking on bet insurance. The sportsbook then calculates the cost which is included directly in your betting slip. If you win, you receive all the funds and if you lose, you will receive the insured amount to your Mostbet account.

  • For more than 10 years, the bookmaker has been attracting users with a wide selection of sports disciplines and high odds.
  • We may offer another method if your deposit problems can’t be resolved.
  • And players get a handy mobile app or website to do it anytime and anywhere.
  • The safest way to download the APK file of the Mostbet mobile app is to visit the bookmaker’s official website and find the download link in the menu.

The mostbet .com platform accepts credit and debit cards, e-wallets, bank transfers, prepaid cards, and cryptocurrency. Recently, there has been a clear trend of switching from using a computer or laptop in favor of a smartphone or any other mobile gadget. This is primarily due to the increased pace of life and people’s desire to always stay connected and “in business” regardless of ambient conditions and location. This is not time-consuming, but provides you with the best flow of work of the program.

Table games

With the app launch, the sportsbook presents an opportunity to make your sports betting and online casino games even faster and more mobile. To start the game via a mobile program, download and install it first. Mostbet is an online sports betting platform with a live-casino feature. This feature lets punters play real-time, immersive versions of their favourite casino games. With Mostbet’s live-casino app, players can access table games such as Baccarat, Roulette and Blackjack on any device.

  • The cashed out amount is calculated depending on the time you activate the cash out feature.
  • The longest way is a bank transfer, as it processes requests slowly, unlike cryptocurrencies.
  • Each user needs to have an account in order to use the application successfully.
  • The phone system may give a message about installing the software from an unknown source.

The application is available for Windows, Android, iOS, and iPhone. The absolute advantage is that you can download the application for free. It is Google’s policy not to post gambling products on the Play Market. The Android program can be downloaded from the official website of the Mostbet bookmaker.

Download Mostbet app for Android

The site is quite simple and accessible for everyone and I am sure that all players will be able to find something for themselves here. With that in mind, look out for the main Mostbet bonuses you can find. Everything so you can make the best online sports betting experience. Now many bookmakers are trying to attract as many users as possible through bonus offers.

  • Com, we also continue to improve and innovate to meet all your needs and exceed your expectations.
  • All these methods are available and reliable for use, as they are verified by the bookmaker.
  • The Mostbet minimum withdrawal can be changed so follow the news on the website.
  • Before using a bonus, it’s vital to read and comprehend the terms and conditions that apply to that specific offer.
  • Mostbet mobile is a website running in the browser on a smartphone or tablet.

It offers you a wide diversity of sports betting and casino features. Take a look at each method’s benefits and make your decision. The functionality of all versions is relevant and convenient, so you can select the version that is most convenient for you. The mobile version is suitable for those who do not want to fill up the memory of their device because applications need to be downloaded and updated. Mostbet India app is an excellent platform to start making money online while getting many positive emotions.

Account registration in Mostbet App

Every Mostbet online game is unique and optimized to both desktop and mobile versions. The Aviator Mostbet involves betting on the outcome of a virtual airplane flight. You can choose to bet on various outcomes such as the color of the plane or the distance it will travel.

  • To avoid conflict in transferring and updating data, the system will disconnect all active devices except one.
  • Now that you have an apk file on your device the only thing left is to install it.
  • However, some people will claim that the app is better due to the high speed of loading all the company’s products.
  • There is a “Popular games” category too, where you can familiarize yourself with the best picks.

On this platform, you will be able to perform almost all actions, like on a computer. For example, this will allow you to bid at any free time in any place convenient for you. Full instructions for installing the Mostbet app for players from India. Mostbet absolutely free application, you dont need to pay for the downloading and install.

Mostbet App Support

Then, permit the installation, wait for the completion, login, and the job is done. The link to download Mostbet App is presented on the page above and the official website of the betting company. You can also find the official version of the app in the App Store. A complete list of tools is presented in the program’s main menu. To play for a fee, deposit your account by any available method.

First of all, at the time, I liked the fact that the bookmaker had already been operating for more than five years. This immediately gave me some confidence, and I made an account on the website (there were no apps yet), after which I got my bonus and started betting. I always liked and enjoyed the fact that Mostbet has very good odds, and thus you can almost always earn even more. Now I’m already making a few thousand rupees a week stably without any stress. That’s why I have to give this bookmaker an excellent rating. Both in the virtual version and the live Mostbet casino, the truth is that you will be able to get the most out of this classic casino game.

How to update Mostbet app?

Mostbet constantly checks out the feedback of players, and regularly updates the app . The latest version of APK Mostbet is designed for mobile devices with Android 5.0 operating system, with 1 GB of RAM. Another great offer is the company’s loyalty program, which is based on crediting special points for depositing. We must admit that the Mostbet app download on iOS devices is faster compared to the Android ones. In particular, users can download the app directly from the App Store and don’t need to change some security settings of their iPhones or iPads. The Mostbet app download on Android is a bit harder than on iOS devices.

In addition, it’s profitable to place bets in this company since the odds here are pretty high. If you want to place bets using your Android smartphone without installing Mostbet apk file on your device, we have an alternative solution for you! The Mostbet website has a mobile version of the platform, so it will be more convenient for you to use this option for playing from a smartphone or tablet. In line with what the best online casinos in India already offer, you can bet on virtual sports and even live casino games here.

Review of the Mostbet App

That’s how you can maximize your winnings and get more value from bets. The most important principle of our work is to provide the best possible betting experience to our gamblers. Com, we also continue to improve and innovate to meet all your needs and exceed your expectations. The platform is designed to be easy to place bets and navigate. It is available in regional languages so it’s accessible even for users who aren’t fluent in English. At Mostbet India, we also have a strong reputation for fast payouts and excellent customer support.

  • It’s crucial to remember that not all payment options could be accessible in all nations and areas, and that accessibility may differ based on the jurisdiction.
  • Don’t hesitate to ask whether the Mostbet app is safe or not.
  • We provide a live section with VIP games, TV games, and various popular games like Poker and Baccarat.
  • If you download a special program to your phone, you can go to the next level of convenience in making sports bets.

The phone system may give a message about installing the software from an unknown source. To use the functionality of Mostbet, you can also download an app for Mostbet. This is a special program that requires installation on your smartphone or tablet. However, for those who have decided to download Mostbet app in advance, they will remain unnoticed. The main difference between the mobile version and the main resource is its simplified interface.

What to do if the mobile version of Mostbet does not work?

Any questions about Mostbet apk download or Mostbet apk download latest version? We offer a variety of payment methods for both withdrawal and deposit. Players can choose from popular options such as Skrill, Visa, Litecoin, and many more.

In addition, live sports betting is available to you here as a particular type of betting. There are also some schemes and features as well as diverse types of bets. To become a confident bettor, you need to understand the difference between all types of bets. By adding a deposit within the first hour of registration, you will be able to receive up to 25000₹ as a bonus. So the amount of your bonus depends only on how much you’ll be credited to your account for the first time.

Review of Application Features

To find and download the .apk file of the Mostbet application, please follow the instructions below. This is an application that gives access to betting and casino options on tablets or all types of smartphones. Don’t hesitate to ask whether the Mostbet app is safe or not.

  • For this, the international version of the bookmaker offers applications for owners of Android devices.
  • The interface of the software is designed in a gaming style with quick access to betting, both pre-match and in-play.
  • The functionality of all versions is relevant and convenient, so you can select the version that is most convenient for you.
  • A user may also receive 250 free spins instead of a deposit bonus.
  • Always gamble responsibly and enjoy the experience responsibly.

The minimum amount required to qualify for this bonus is 100 INR. If you make your initial deposit within 30 minutes of creating your new account, you will receive a 125% welcome bonus. The amount is deposited immediately when you complete your first deposit. Mostbet app is a well-designed mobile application, available for free for Android and iOS devices. The safest way to download the APK file of the Mostbet mobile app is to visit the bookmaker’s official website and find the download link in the menu.

Download Mostbet for iOS Devices

Many bettors in Pakistan bet online on sporting events at Mostbet using different gadgets. The developers have created several options for the betting company platform to satisfy all customer requests. The user can choose a convenient option – playing on the Mostbet site or using one application. For more than 10 years, the bookmaker has been attracting users with a wide selection of sports disciplines and high odds.

  • It is also completely free for any player to Mostbet download, and is easy to get on your mobile device.
  • If there are any questions about minimum withdrawal in Mostbet or other issues concerning Mostbet cash, feel free to ask our customer support.
  • For the convenience of users, the developers of the bookmaker’s office created Mostbet App for iOS.
  • There are also virtual sports betting, real-time betting and even regular lotteries that can be participated in to win big prizes.

The fastest ways are cryptocurrencies and electronic wallets. The longest way is a bank transfer, as it processes requests slowly, unlike cryptocurrencies. Now you know all the crucial facts about the Mostbet app, the installation process for Android and iOS, and betting types offered. This application will impress both newbies and professionals due to its great usability.

The Mobile Version of the Site for Pakistan

You need to open the Mostbet website and click on the Android icon. The bonus funds will be put to your account, and you use them to place bets on games or events. We offer a Mostbet exchange platform where players can place bets against each other rather than against the bookmaker.

  • Don’t forget to pay attention to the minimum and maximum amount.
  • You can get the Android Mostbet app on the official website by downloading an .apk file.
  • Users can bet on both pre-match and real-time events with odds that are constantly updated throughout the game as it progresses.
  • Download the app, it works great, and there are so many benefits from it.
  • You can also find the official version of the app in the App Store.
  • Adding a certain amount to your account balance is required to receive this bonus.

The sportsbook app provides live broadcast of selected games especially the popular ones which enables punters to bet and watch as the games happen in real time. You can view if a match is available for broadcast via the broadcast icon shown on the ongoing game. There is a dedicated in-play wagering section on the Mostbet mobile app which allows punters to place wagers on games happening in real time.

How to Update the Application When Installing via .apk

The Mostbet mobile app is an excellent option for those looking to play their favourite online casino games, such as poker. Offering the same quality gaming experience as its desktop version, the Mostbet poker app has all your favourite features on any modern device. It offers a smooth gameplay experience with fluid navigation that ensures a hassle-free experience no matter which operating system you’re playing on. Players can enjoy a wide range of online gambling options, including sports betting, casino games, and live dealer games. Our sportsbook offers a vast selection of pre-match and in-play betting markets across numerous sports.

  • The program offers you over 30 different sports disciplines to choose from, and cricket is one of them.
  • For customer convenience, each slot has the ability to switch to full screen mode.
  • You must choose the bonus you want to utilize and comply with the conditions outlined in the terms and conditions in order to collect a bonus on the Mostbet app.
  • You may report a Mostbet deposit problem by contacting the support team.

It is important to know that in this case, you can register only one game account. Consequently, if violations of the rules are revealed, severe sanctions will follow, up to the blocking of both accounts. We advise you to first open the settings of the mobile device and allow the installation of applications from unknown sources. Without this, in some cases, the installation may be blocked.

What is Mostbet?

But, we’ll discuss it later, and now, let’s delve into Mostbet Casino and different types of bets made available by Mostbet. Live bets are one of the features offered by Mostbet in Pakistan. A bettor can bet on the matches, which take place in real-time. It allows you to take advantage of in-play betting opportunities that may arise during the game, such as changing odds or changes in form.

  • However, despite all this, the app has some shortcomings, which should also be noted.
  • Once you’re in the app list, scroll until you find the Mostbet app and tap it when it appears.
  • Customer service options on the Mostbet app include live chat, email, phone assistance, and a FAQ section.
  • After registering, you can view the wide selection of bets available in the app.

Yes, some risks are involved with using this app, such as data breaches, privacy violations, and malicious software. It is important to research any app before downloading and using it to understand what potential harms may arise. Write to support-en@mostbet.com and the team will respond to email within 24 hours. The Mostbet minimum withdrawal can be different but usually the amount is ₹800.

]]>
https://affypharma.com/download-mostbet-app-play-and-win-big/feed/ 0